升级依赖jar版本

This commit is contained in:
mazhicheng 2019-09-16 09:43:50 +08:00
parent 76ce2768ee
commit e0cf796e55
2 changed files with 10 additions and 5 deletions

View File

@ -1,6 +1,6 @@
buildscript {
ext {
springBootVersion = '2.1.6.RELEASE'
springBootVersion = '2.1.8.RELEASE'
}
repositories {
mavenLocal() //maven库
@ -13,7 +13,7 @@ buildscript {
//
allprojects {
group 'com.diboot'
version '2.0.1'
version '2.0.3'
apply plugin: 'idea'
}
//
@ -32,10 +32,10 @@ subprojects {
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
}
ext {//
springBootVersion = "2.1.6.RELEASE"
springBootVersion = "2.1.8.RELEASE"
mysqlConnectorVersion = "8.0.16"
mybatisStarterVersion = "2.0.1"
mybatisPlusVersion = "3.1.2"
mybatisStarterVersion = "2.1.0"
mybatisPlusVersion = "3.2.0"
fastjsonVersion = "1.2.60"
lombokVersion = "1.18.8"
}

View File

@ -341,6 +341,11 @@ public class V {
return false;
}
}
for(Object obj : targetList){
if(!sourceList.contains(obj)){
return false;
}
}
return true;
}
else{