runing
This commit is contained in:
parent
a1fae8ba54
commit
e5aa1b06ee
|
|
@ -4,9 +4,17 @@
|
|||
|
||||
for gfile in $(find . -name "build.gradle")
|
||||
do
|
||||
|
||||
gradle -b $gfile clean build -x test -DbuildProduct=true
|
||||
echo -e "\033[32m----------------- $gfile 模块编译成功 ---------------------- \033[0m"
|
||||
if [[ $1='cl' ]];then
|
||||
|
||||
gradle -b $gfile clean;
|
||||
echo -e "\033[32m----------------- $gfile 模块 清理 成功 ---------------------- \033[0m"
|
||||
else
|
||||
gradle -b $gfile clean build -x test -DbuildProduct=true -DreleaseVersion=$1
|
||||
echo -e "\033[32m----------------- $gfile 模块编译成功 ---------------------- \033[0m"
|
||||
fi
|
||||
|
||||
|
||||
done
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,8 @@ buildscript {
|
|||
|
||||
|
||||
ext {
|
||||
devVersion = "dev-9-SNAPSHOT"
|
||||
devVersion = System.getProperty("devVersion") ? System.getProperty("devVersion")
|
||||
: "dev-9-SNAPSHOT"
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@ buildscript {
|
|||
}
|
||||
|
||||
ext {
|
||||
devVersion = "dev-9-SNAPSHOT"
|
||||
// devVersion = "2.3.0"
|
||||
devVersion = System.getProperty("devVersion") ? System.getProperty("devVersion")
|
||||
: "dev-9-SNAPSHOT"
|
||||
}
|
||||
|
||||
apply from: "../build-config/build-all.gradle"
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
../../build-config/publish.sh
|
||||
|
|
@ -29,7 +29,7 @@ dependencies {
|
|||
implementation "com.ruoyi:ruoyi-common-swagger:${devVersion}"
|
||||
implementation "com.ruoyi:ruoyi-api-system:${devVersion}"
|
||||
|
||||
|
||||
implementation "io.minio:minio:8.0.3"
|
||||
implementation "io.springfox:springfox-swagger-ui:2.9.2"
|
||||
implementation "com.github.tobato:fastdfs-client:1.27.2"
|
||||
implementation "commons-fileupload:commons-fileupload:1.4"
|
||||
|
|
|
|||
Loading…
Reference in New Issue