bintrayconfig.gradle 924 B

1234567891011121314151617181920212223242526
  1. if (!project.rootProject.file('local.properties').exists()) {
  2. println "Not applying install.gradle"
  3. return
  4. }
  5. if (shard == null) {
  6. throw new IllegalStateException("Must specify a shard in module's build.gradle")
  7. } else if (versions == null || versions.publishVersion == null) {
  8. throw new IllegalStateException("Unable to reference publishVersion")
  9. }
  10. Properties properties = new Properties()
  11. properties.load(project.rootProject.file('local.properties').newDataInputStream())
  12. publish {
  13. bintrayUser = properties.getProperty("bintray.user")
  14. bintrayKey = properties.getProperty("bintray.apikey")
  15. userOrg = 'drummer-aidan'
  16. groupId = 'com.afollestad.material-dialogs'
  17. uploadName = "material-dialogs:$shard"
  18. artifactId = shard
  19. publishVersion = versions.publishVersion
  20. desc = 'A beautiful, fluid, and customizable dialogs API.'
  21. website = 'https://github.com/afollestad/material-dialogs'
  22. dryRun = false
  23. }