You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.2 KiB

  1. apply plugin: 'com.github.dcendents.android-maven'
  2. // Maven Group ID for the artifact
  3. group = publishedGroupId
  4. install {
  5. repositories.mavenInstaller {
  6. // This generates POM.xml with proper parameters
  7. pom {
  8. project {
  9. packaging 'aar'
  10. groupId publishedGroupId
  11. artifactId artifact
  12. // Add your description here
  13. name libraryName
  14. description libraryDescription
  15. url siteUrl
  16. // Set your license
  17. licenses {
  18. license {
  19. name licenseName
  20. url licenseUrl
  21. }
  22. }
  23. developers {
  24. developer {
  25. id developerId
  26. name developerName
  27. email developerEmail
  28. }
  29. }
  30. scm {
  31. connection gitUrl
  32. developerConnection gitUrl
  33. url siteUrl
  34. }
  35. }
  36. }
  37. }
  38. }