Skip to content

Commit a97a059

Browse files
committed
upgrade libs
1 parent dc99d38 commit a97a059

File tree

6 files changed

+176
-145
lines changed

6 files changed

+176
-145
lines changed

build.gradle

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
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

1111
group = 'com.webank'
12-
version = '0.1.2-SNAPSHOT'
12+
version = '1.0.0'
1313
sourceCompatibility = '1.8'
1414

1515
configurations {
@@ -21,11 +21,10 @@ configurations {
2121
repositories {
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

3130
test {
@@ -39,21 +38,18 @@ List logger = [
3938
]
4039

4140
dependencies {
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

5955
googleJavaFormat {

gradle/wrapper/gradle-wrapper.jar

3.83 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)