File tree Expand file tree Collapse file tree 17 files changed +50
-8
lines changed
spring-boot-devDataSource
spring-boot-dubbo3-consumer
spring-boot-dubbo3-provider
src/main/java/com/ooooo/util
spring-boot-sharding-jdbc
spring-cloud-authorize-client
spring-cloud-authorize-server
spring-cloud-dubbo-consumer
spring-cloud-dubbo-provider Expand file tree Collapse file tree 17 files changed +50
-8
lines changed Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ allprojects {
38
38
39
39
dependencies {
40
40
compileOnly(" org.projectlombok:lombok:1.18.22" )
41
- annotationProcessor(" org.projectlombok:lombok" )
41
+ annotationProcessor(" org.projectlombok:lombok:1.18.22 " )
42
42
testCompileOnly(" org.projectlombok:lombok:1.18.22" )
43
- testAnnotationProcessor(" org.projectlombok:lombok" )
43
+ testAnnotationProcessor(" org.projectlombok:lombok:1.18.22 " )
44
44
}
45
45
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ dependencyManagement {
7
7
dependencies {
8
8
api(" org.springframework.boot:spring-boot-starter" )
9
9
10
- api(" com.h2database:h2" )
10
+ api(" com.h2database:h2:+ " )
11
11
api(" p6spy:p6spy:+" )
12
12
api(" com.baomidou:mybatis-plus-boot-starter:3.4.2" )
13
13
}
Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ protobuf {
13
13
}
14
14
}
15
15
16
+ dependencyManagement {
17
+ imports {
18
+ mavenBom " org.springframework.boot:spring-boot-dependencies:${ springBootVersion} "
19
+ }
20
+ }
21
+
16
22
configurations {
17
23
all {
18
24
exclude group : " org.slf4j" , module : " slf4j-log4j12"
Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ protobuf {
11
11
protoc { artifact = " com.google.protobuf:protoc:${ protocVersion} " }
12
12
}
13
13
14
+ dependencyManagement {
15
+ imports {
16
+ mavenBom " org.springframework.boot:spring-boot-dependencies:${ springBootVersion} "
17
+ }
18
+ }
19
+
20
+
14
21
configurations {
15
22
all {
16
23
exclude group : " org.slf4j" , module : " slf4j-log4j12"
Original file line number Diff line number Diff line change
1
+ dependencyManagement {
2
+ imports {
3
+ mavenBom " org.springframework.boot:spring-boot-dependencies:${ springBootVersion} "
4
+ }
5
+ }
6
+
1
7
dependencies {
2
8
api(" org.springframework.boot:spring-boot-starter-web" )
3
9
api(" org.springframework.boot:spring-boot-starter-data-redis" )
Original file line number Diff line number Diff line change
1
+ dependencyManagement {
2
+ imports {
3
+ mavenBom " org.springframework.boot:spring-boot-dependencies:${ springBootVersion} "
4
+ }
5
+ }
6
+
1
7
dependencies {
2
- api(" org.springframework.boot:spring-boot-starter-web" )
8
+ api(" com.alibaba:fastjson:1.2.67" )
9
+ api(' commons-codec:commons-codec:1.15' )
3
10
api(" org.apache.commons:commons-configuration2:+" )
11
+ api(" org.springframework.boot:spring-boot-starter-web" )
4
12
api(" org.springframework.boot:spring-boot-starter-data-redis" )
5
13
6
14
}
Original file line number Diff line number Diff line change 4
4
import javax .crypto .Cipher ;
5
5
import javax .crypto .spec .IvParameterSpec ;
6
6
import javax .crypto .spec .SecretKeySpec ;
7
- import org .apache .tomcat . util .codec .binary .Base64 ;
7
+ import org .apache .commons .codec .binary .Base64 ;
8
8
9
9
10
10
/**
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ dependencies {
10
10
api(" org.springframework.boot:spring-boot-starter-web" )
11
11
12
12
// sharding-jdbc
13
- api(" org.codehaus .groovy:groovy:2.5.15 " )
13
+ api(' org.apache .groovy:groovy:4.0.6 ' )
14
14
api(" org.apache.shardingsphere:shardingsphere-jdbc-core-spring-boot-starter:5.2.0" )
15
15
// api("org.apache.shardingsphere:shardingsphere-cluster-mode-repository-zookeeper-curator:5.2.0")
16
16
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ dependencies {
8
8
api(" org.springframework.boot:spring-boot-starter-web" )
9
9
api(" org.springframework.boot:spring-boot-starter-aop" )
10
10
11
- api(" com.h2database:h2" )
11
+ api(" com.h2database:h2:+ " )
12
12
13
13
testImplementation(" org.springframework.boot:spring-boot-starter-test" )
14
14
}
Original file line number Diff line number Diff line change 5
5
dependencyManagement {
6
6
imports {
7
7
mavenBom " org.springframework.cloud:spring-cloud-dependencies:${ springCloudVersion} "
8
+ mavenBom " org.springframework.boot:spring-boot-dependencies:${ springBootVersion} "
8
9
}
9
10
}
10
11
You can’t perform that action at this time.
0 commit comments