Skip to content

Commit dc87e8d

Browse files
fix: dependency
1 parent 17aaf87 commit dc87e8d

File tree

80 files changed

+205
-2566
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+205
-2566
lines changed

build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,15 @@ allprojects {
3434

3535
ext {
3636
set("springBootVersion", "2.7.4")
37-
set("springCloudVersion", "Hoxton.SR10")
38-
set("springCloudAlibabaVersion", "2.2.6.RELEASE")
37+
3938

4039
}
4140

4241

4342
dependencyManagement {
4443
imports {
4544
// mavenBom "org.springframework.boot:spring-boot-dependencies:${springBootVersion}"
46-
// mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
47-
// mavenBom "com.alibaba.cloud:spring-cloud-alibaba-dependencies:${springCloudAlibabaVersion}"
45+
//
4846
}
4947
}
5048

experimental-code/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ dependencyManagement {
55
}
66

77
dependencies {
8+
api("com.alibaba:fastjson:1.2.67")
89
api("com.google.protobuf:protobuf-java:3.11.0")
910

1011
testImplementation("org.springframework.boot:spring-boot-starter-test")

experimental-code/src/main/java/com/ooooo/ExperimentalApplication.java

Lines changed: 0 additions & 16 deletions
This file was deleted.

settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ include "spring-boot-methodHandler"
5353

5454
include "spring-boot-grpc"
5555

56+
include "spring-boot-annotationProcessor"
57+
5658
// spring boot examples
5759
include "spring-boot-examples:spring-boot-redis"
5860
include "spring-boot-examples:spring-boot-webmvc"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.ooooo.annotation;
2+
3+
/**
4+
* @author <a href="https://github.com/ooooo-youwillsee">ooooo</a>
5+
* @since 1.0.0
6+
*/
7+
class MyGetterAnnotationProcessorTest {
8+
9+
public static void main(String[] args) {
10+
User user = new User();
11+
}
12+
}

spring-boot-auth/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ dependencyManagement {
55
}
66

77
dependencies {
8+
api("org.apache.commons:commons-lang3:3.10")
9+
api("com.alibaba:fastjson:1.2.67")
810
api("com.auth0:java-jwt:3.19.0")
911

1012
api("org.springframework.boot:spring-boot-starter-web")

spring-boot-compositePropertySourcesExt/out/production/resources/META-INF/spring.factories

Lines changed: 0 additions & 2 deletions
This file was deleted.

spring-cloud-examples/spring-cloud-apollo/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
dependencyManagement {
2+
imports {
3+
mavenBom "org.springframework.boot:spring-boot-dependencies:${springBootVersion}"
4+
}
5+
}
6+
17
dependencies {
28
api("org.springframework.boot:spring-boot-starter-web")
39
api("com.ctrip.framework.apollo:apollo-client:1.5.0")

spring-cloud-examples/spring-cloud-authorize-client/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
ext {
2+
set("springCloudVersion", "Hoxton.SR10")
3+
}
4+
5+
dependencyManagement {
6+
imports {
7+
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
8+
}
9+
}
10+
111
dependencies {
212
api("org.springframework.boot:spring-boot-starter-web")
313
api("org.springframework.cloud:spring-cloud-starter-netflix-eureka-client")

spring-cloud-examples/spring-cloud-authorize-server/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
ext {
2+
set("springCloudVersion", "Hoxton.SR10")
3+
}
4+
5+
dependencyManagement {
6+
imports {
7+
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
8+
}
9+
}
10+
111
dependencies {
212
api("org.springframework.boot:spring-boot-starter-web")
313
api("org.springframework.cloud:spring-cloud-starter-netflix-eureka-client")

0 commit comments

Comments
 (0)