123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * multidexlib2 - Copyright 2015-2020 Rodrigo Balerdi
- * (GNU General Public License version 3 or later)
- *
- * multidexlib2 is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published
- * by the Free Software Foundation, either version 3 of the License,
- * or (at your option) any later version.
- */
- ext.configurePom = { pom ->
- pom.description = 'Android Dalvik bytecode patcher.'
- pom.url = 'https://github.com/DexPatcher/dexpatcher-tool'
- pom.organization {
- name = 'DexPatcher'
- url = 'https://dexpatcher.github.io/'
- }
- pom.licenses {
- license {
- name = 'GNU General Public License (version 3 or later)'
- url = 'https://www.gnu.org/licenses/gpl.txt'
- }
- }
- pom.developers {
- developer {
- name = 'Lanchon'
- url = 'https://github.com/Lanchon'
- }
- }
- pom.scm {
- connection = 'scm:git:git://github.com/DexPatcher/dexpatcher-tool.git'
- developerConnection = 'scm:git:ssh://github.com:DexPatcher/dexpatcher-tool.git'
- url = 'https://github.com/DexPatcher/dexpatcher-tool'
- }
- }
- signing {
- if (project.hasProperty('signing.secretKeyRingFile')) {
- sign publishing.publications
- }
- }
|