11plugins {
2- id ' org.springframework.boot' version ' 2.2.9.RELEASE '
3- id ' io.spring.dependency-management' version ' 1.0.10 .RELEASE'
2+ id ' org.springframework.boot' version ' 2.7.1 '
3+ id ' io.spring.dependency-management' version ' 1.0.11 .RELEASE'
44 id ' java'
55 id ' eclipse'
66 id ' idea'
@@ -9,7 +9,7 @@ plugins {
99}
1010
1111group = ' com.webank'
12- version = ' 0.1.2-SNAPSHOT '
12+ version = ' 1.0.0 '
1313sourceCompatibility = ' 1.8'
1414
1515configurations {
@@ -21,11 +21,10 @@ configurations {
2121repositories {
2222 mavenLocal()
2323 mavenCentral()
24- maven { url " http://maven.aliyun.com/nexus/content/groups/public/" }
25- maven { url " https://oss.sonatype.org/content/repositories/snapshots" }
26- maven { url " https://dl.bintray.com/ethereum/maven/" }
27- maven { url " https://oss.sonatype.org/service/local/staging/deploy/maven2" }
28- maven { url " https://oss.sonatype.org/content/repositories/snapshots" }
24+ maven {
25+ allowInsecureProtocol = true
26+ url " http://maven.aliyun.com/nexus/content/groups/public/"
27+ }
2928}
3029
3130test {
@@ -39,21 +38,18 @@ List logger = [
3938]
4039
4140dependencies {
42- compile logger
41+ implementation logger
4342 implementation ' org.springframework.boot:spring-boot-starter-web'
4443 compileOnly ' org.projectlombok:lombok'
4544 annotationProcessor ' org.projectlombok:lombok'
4645 testImplementation(' org.springframework.boot:spring-boot-starter-test' ) {
4746 exclude group : ' org.junit.vintage' , module : ' junit-vintage-engine'
4847 }
49- compile (' org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.7.1 ' ) {
48+ implementation (' org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.9.0 ' ) {
5049 exclude group : ' org.slf4j'
5150 }
52- compile group : ' com.google.guava' , name : ' guava' , version : ' 30.0-jre'
53- compile ' commons-codec:commons-codec:1.4'
54- compile group : ' org.apache.commons' , name :" commons-pool2" ,version :" 2.4.2"
55- compile group : ' org.apache.commons' , name : ' commons-collections4' , version : ' 4.2'
56-
51+ implementation group : ' com.google.guava' , name : ' guava' , version : ' 31.1-jre'
52+ implementation ' commons-codec:commons-codec:1.15'
5753}
5854
5955googleJavaFormat {
0 commit comments