Files
yusheng-android/animplayer/publish.gradle
2025-12-03 09:09:57 +08:00

34 lines
975 B
Groovy
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

ext {
// 此处填写刚才建立的maven仓库的仓库名称
bintrayRepo = 'maven'
// library的group id
publishedGroupId = 'com.egame.vap'
// library网站地址
siteUrl = 'https://github.com/Tencent/vap'
// library仓库地址
gitUrl = 'https://github.com/Tencent/vap'
// 注册时候的bintray username
developerId = 'hexleo'
// 开发者名称
developerName = 'hexleo'
// 开发者邮箱
developerEmail = 'wanghailiang333@gmail.com'
// 开源许可证
licenseName = 'MIT'
licenseUrl = 'http://opensource.org/licenses/MIT'
allLicenses = ["MIT"]
// library artifact单个module一般就填写library name
artifact = 'animplayer'
libraryName = 'animplayer'
libraryVersion = '2.0.15'
libraryDescription = ''
// bintrayName 是你在网页Repository页面能看到的名称
bintrayName = 'vap'
}
apply from: '../installv1.gradle'
apply from: '../bintrayv1.gradle'