mirror of
https://gitee.com/y_project/RuoYi-Cloud.git
synced 2026-02-03 15:31:58 +08:00
gradle支持
This commit is contained in:
14
build-config/build-all.gradle
Normal file
14
build-config/build-all.gradle
Normal 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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user