|
@@ -1,5 +1,5 @@
|
|
|
plugins {
|
|
|
- id 'org.springframework.boot' version '2.7.3' apply(false)
|
|
|
+ id 'org.springframework.boot' version '2.5.14' apply(false)
|
|
|
id 'io.spring.dependency-management' version '1.0.10.RELEASE' apply(false)
|
|
|
}
|
|
|
|
|
@@ -79,7 +79,7 @@ subprojects {
|
|
|
|
|
|
logback_ext_spring = '0.1.5'
|
|
|
|
|
|
- jackson = '2.11.2'
|
|
|
+ jackson = '2.13.1'
|
|
|
jackson_asl = '1.9.13'
|
|
|
// ali json
|
|
|
fastjson = '1.2.58'
|
|
@@ -170,7 +170,6 @@ subprojects {
|
|
|
ibatis_2 = '2.0.0'
|
|
|
|
|
|
javax_validation = '2.0.1.Final'
|
|
|
- jackson = '2.13.1'
|
|
|
bitwalker_agent = '1.21'
|
|
|
jsonwebtoken = '0.9.1'
|
|
|
|
|
@@ -178,19 +177,23 @@ subprojects {
|
|
|
}
|
|
|
|
|
|
configure(subprojects.findAll(){
|
|
|
- it.name == 'songmao-common' || 'eccs-biz'
|
|
|
+ it.name == 'songmao-common'
|
|
|
}){
|
|
|
- apply plugin: "org.springframework.boot"
|
|
|
+ apply plugin: 'org.springframework.boot'
|
|
|
bootJar {
|
|
|
enabled = false
|
|
|
}
|
|
|
}
|
|
|
|
|
|
configure(subprojects.findAll(){
|
|
|
- it.name == 'eccs-admin' || 'eccs-system'
|
|
|
- || 'eccs-framework' || 'eccs-generator' || 'eccs-quartz'
|
|
|
+ it.name == 'eccs-admin' || 'eccs-system' || 'eccs-framework' || 'eccs-biz'
|
|
|
+ || 'eccs-generator' || 'eccs-quartz'
|
|
|
}){
|
|
|
- apply plugin: "org.springframework.boot"
|
|
|
+ apply plugin: 'org.springframework.boot'
|
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
+ bootJar {
|
|
|
+ // 符合条件的子项目不使用bootJar打包方式
|
|
|
+ enabled = false
|
|
|
+ }
|
|
|
}
|
|
|
|