publish.gradle 975 B

123456789101112131415161718192021222324252627282930313233
  1. ext {
  2. // 此处填写刚才建立的maven仓库的仓库名称
  3. bintrayRepo = 'maven'
  4. // library的group id
  5. publishedGroupId = 'com.egame.vap'
  6. // library网站地址
  7. siteUrl = 'https://github.com/Tencent/vap'
  8. // library仓库地址
  9. gitUrl = 'https://github.com/Tencent/vap'
  10. // 注册时候的bintray username
  11. developerId = 'hexleo'
  12. // 开发者名称
  13. developerName = 'hexleo'
  14. // 开发者邮箱
  15. developerEmail = 'wanghailiang333@gmail.com'
  16. // 开源许可证
  17. licenseName = 'MIT'
  18. licenseUrl = 'http://opensource.org/licenses/MIT'
  19. allLicenses = ["MIT"]
  20. // library artifact(单个module一般就填写library name)
  21. artifact = 'animplayer'
  22. libraryName = 'animplayer'
  23. libraryVersion = '2.0.15'
  24. libraryDescription = ''
  25. // bintrayName 是你在网页Repository页面能看到的名称
  26. bintrayName = 'vap'
  27. }
  28. apply from: '../installv1.gradle'
  29. apply from: '../bintrayv1.gradle'