Skip to content

Commit 1c54e6b

Browse files
committed
Add annotation processor
1 parent 869e3ec commit 1c54e6b

File tree

8 files changed

+36
-0
lines changed

8 files changed

+36
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ target/
1010
_site/
1111
.idea
1212
*.iml
13+
.factorypath

spring-cloud-netflix-core/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
<main.basedir>${basedir}/..</main.basedir>
1717
</properties>
1818
<dependencies>
19+
<dependency>
20+
<groupId>org.springframework.boot</groupId>
21+
<artifactId>spring-boot-configuration-processor</artifactId>
22+
<optional>true</optional>
23+
</dependency>
1924
<dependency>
2025
<groupId>org.springframework.boot</groupId>
2126
<artifactId>spring-boot</artifactId>

spring-cloud-netflix-eureka-server/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
<wro4j.version>1.7.6</wro4j.version>
1818
</properties>
1919
<dependencies>
20+
<dependency>
21+
<groupId>org.springframework.boot</groupId>
22+
<artifactId>spring-boot-configuration-processor</artifactId>
23+
<optional>true</optional>
24+
</dependency>
2025
<dependency>
2126
<groupId>org.springframework.boot</groupId>
2227
<artifactId>spring-boot-starter-web</artifactId>

spring-cloud-netflix-hystrix-amqp/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
<main.basedir>${basedir}/..</main.basedir>
1717
</properties>
1818
<dependencies>
19+
<dependency>
20+
<groupId>org.springframework.boot</groupId>
21+
<artifactId>spring-boot-configuration-processor</artifactId>
22+
<optional>true</optional>
23+
</dependency>
1924
<dependency>
2025
<groupId>org.springframework.cloud</groupId>
2126
<artifactId>spring-cloud-commons</artifactId>

spring-cloud-netflix-hystrix-dashboard/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
<spring-cloud.version>1.0.1.BUILD-SNAPSHOT</spring-cloud.version>
1717
</properties>
1818
<dependencies>
19+
<dependency>
20+
<groupId>org.springframework.boot</groupId>
21+
<artifactId>spring-boot-configuration-processor</artifactId>
22+
<optional>true</optional>
23+
</dependency>
1924
<dependency>
2025
<groupId>org.springframework.boot</groupId>
2126
<artifactId>spring-boot-starter-web</artifactId>

spring-cloud-netflix-sidecar/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
<main.basedir>${basedir}/..</main.basedir>
1717
</properties>
1818
<dependencies>
19+
<dependency>
20+
<groupId>org.springframework.boot</groupId>
21+
<artifactId>spring-boot-configuration-processor</artifactId>
22+
<optional>true</optional>
23+
</dependency>
1924
<dependency>
2025
<groupId>org.springframework.cloud</groupId>
2126
<artifactId>spring-cloud-commons</artifactId>

spring-cloud-netflix-turbine-amqp/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@
5454
</dependencies>
5555
</dependencyManagement>
5656
<dependencies>
57+
<dependency>
58+
<groupId>org.springframework.boot</groupId>
59+
<artifactId>spring-boot-configuration-processor</artifactId>
60+
<optional>true</optional>
61+
</dependency>
5762
<dependency>
5863
<groupId>org.springframework.cloud</groupId>
5964
<artifactId>spring-cloud-netflix-core</artifactId>

spring-cloud-netflix-turbine/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@
3636
</dependencies>
3737
</dependencyManagement>
3838
<dependencies>
39+
<dependency>
40+
<groupId>org.springframework.boot</groupId>
41+
<artifactId>spring-boot-configuration-processor</artifactId>
42+
<optional>true</optional>
43+
</dependency>
3944
<dependency>
4045
<groupId>org.springframework.boot</groupId>
4146
<artifactId>spring-boot-starter-web</artifactId>

0 commit comments

Comments
 (0)