configure-publishing.gradle 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * multidexlib2 - Copyright 2015-2020 Rodrigo Balerdi
  3. * (GNU General Public License version 3 or later)
  4. *
  5. * multidexlib2 is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published
  7. * by the Free Software Foundation, either version 3 of the License,
  8. * or (at your option) any later version.
  9. */
  10. ext.configurePom = { pom ->
  11. pom.description = 'Android Dalvik bytecode patcher.'
  12. pom.url = 'https://github.com/DexPatcher/dexpatcher-tool'
  13. pom.organization {
  14. name = 'DexPatcher'
  15. url = 'https://dexpatcher.github.io/'
  16. }
  17. pom.licenses {
  18. license {
  19. name = 'GNU General Public License (version 3 or later)'
  20. url = 'https://www.gnu.org/licenses/gpl.txt'
  21. }
  22. }
  23. pom.developers {
  24. developer {
  25. name = 'Lanchon'
  26. url = 'https://github.com/Lanchon'
  27. }
  28. }
  29. pom.scm {
  30. connection = 'scm:git:git://github.com/DexPatcher/dexpatcher-tool.git'
  31. developerConnection = 'scm:git:ssh://github.com:DexPatcher/dexpatcher-tool.git'
  32. url = 'https://github.com/DexPatcher/dexpatcher-tool'
  33. }
  34. }
  35. signing {
  36. if (project.hasProperty('signing.secretKeyRingFile')) {
  37. sign publishing.publications
  38. }
  39. }