gradle支持

This commit is contained in:
陈云志
2020-12-15 20:21:23 +08:00
parent 743e59db7a
commit 53aa2db213
35 changed files with 899 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
//该产品的构建基本配置,公司统一模板,禁止开发人员修改。
allprojects {
def releaseVersion = System.getProperty("releaseVersion")
version = releaseVersion ? releaseVersion : "${devVersion}"
}
ext {
buildProduct = System.getProperty("buildProduct") ?: false
}
task abuildAllModule(type: Exec) {
workingDir("../")
executable "build-config/build_jar.sh"
args(project.name)
}