Skip to content

Commit 0260422

Browse files
committed
Removes last vestiges of Lombok
1 parent 056a88d commit 0260422

File tree

9 files changed

+16
-42
lines changed

9 files changed

+16
-42
lines changed

spring-cloud-consul-binder/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@
3636
<artifactId>consul-api</artifactId>
3737
<optional>true</optional>
3838
</dependency>
39-
<dependency>
40-
<groupId>org.projectlombok</groupId>
41-
<artifactId>lombok</artifactId>
42-
<scope>test</scope>
43-
</dependency>
4439
<dependency>
4540
<groupId>org.springframework.cloud</groupId>
4641
<artifactId>spring-cloud-deployer-local</artifactId>

spring-cloud-consul-core/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,6 @@
7878
<artifactId>httpcore</artifactId>
7979
<optional>true</optional>
8080
</dependency>
81-
<dependency>
82-
<groupId>org.projectlombok</groupId>
83-
<artifactId>lombok</artifactId>
84-
<scope>test</scope>
85-
</dependency>
8681
<dependency>
8782
<groupId>org.springframework.boot</groupId>
8883
<artifactId>spring-boot-autoconfigure-processor</artifactId>

spring-cloud-consul-discovery/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,6 @@
8383
<artifactId>spring-boot-autoconfigure-processor</artifactId>
8484
<optional>true</optional>
8585
</dependency>
86-
<dependency>
87-
<groupId>org.projectlombok</groupId>
88-
<artifactId>lombok</artifactId>
89-
<scope>test</scope>
90-
</dependency>
9186
<dependency>
9287
<groupId>org.springframework.boot</groupId>
9388
<artifactId>spring-boot-starter-test</artifactId>

spring-cloud-consul-integration-tests/spring-cloud-consul-bootstrap-tests/pom.xml

-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,6 @@
5656
<groupId>org.springframework.cloud</groupId>
5757
<artifactId>spring-cloud-starter-openfeign</artifactId>
5858
</dependency>
59-
<dependency>
60-
<groupId>org.projectlombok</groupId>
61-
<artifactId>lombok</artifactId>
62-
<!-- Only needed at compile time -->
63-
<optional>true</optional>
64-
</dependency>
6559
</dependencies>
6660

6761
</project>

spring-cloud-consul-integration-tests/spring-cloud-consul-bootstrap-tests/src/main/java/org/springframework/cloud/consul/bootstraptests/ConsulBootstrapApplication.java

-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
import java.util.List;
2020

21-
import lombok.extern.slf4j.Slf4j;
22-
2321
import org.springframework.beans.factory.annotation.Autowired;
2422
import org.springframework.beans.factory.annotation.Value;
2523
import org.springframework.boot.SpringApplication;
@@ -48,7 +46,6 @@
4846
@RestController
4947
@EnableConfigurationProperties
5048
@EnableFeignClients
51-
@Slf4j
5249
public class ConsulBootstrapApplication {
5350

5451
@Autowired

spring-cloud-consul-integration-tests/spring-cloud-consul-bootstrap-tests/src/main/java/org/springframework/cloud/consul/bootstraptests/SampleProperties.java

+8-3
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,22 @@
1616

1717
package org.springframework.cloud.consul.bootstraptests;
1818

19-
import lombok.Data;
20-
2119
import org.springframework.boot.context.properties.ConfigurationProperties;
2220

2321
/**
2422
* @author Spencer Gibb
2523
*/
2624
@ConfigurationProperties("sample")
27-
@Data
2825
public class SampleProperties {
2926

3027
private String prop = "default value";
3128

29+
public String getProp() {
30+
return prop;
31+
}
32+
33+
public void setProp(String prop) {
34+
this.prop = prop;
35+
}
36+
3237
}

spring-cloud-consul-integration-tests/spring-cloud-consul-configdata-retry-tests/pom.xml

-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,6 @@
5656
<groupId>org.springframework.retry</groupId>
5757
<artifactId>spring-retry</artifactId>
5858
</dependency>
59-
<dependency>
60-
<groupId>org.projectlombok</groupId>
61-
<artifactId>lombok</artifactId>
62-
<!-- Only needed at compile time -->
63-
<optional>true</optional>
64-
</dependency>
6559
<dependency>
6660
<groupId>org.springframework.boot</groupId>
6761
<artifactId>spring-boot-starter-test</artifactId>

spring-cloud-consul-integration-tests/spring-cloud-consul-configdata-tests/pom.xml

-6
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@
4141
<groupId>org.springframework.cloud</groupId>
4242
<artifactId>spring-cloud-starter-consul-config</artifactId>
4343
</dependency>
44-
<dependency>
45-
<groupId>org.projectlombok</groupId>
46-
<artifactId>lombok</artifactId>
47-
<!-- Only needed at compile time -->
48-
<optional>true</optional>
49-
</dependency>
5044
<dependency>
5145
<groupId>org.springframework.boot</groupId>
5246
<artifactId>spring-boot-starter-test</artifactId>

spring-cloud-consul-integration-tests/spring-cloud-consul-configdata-tests/src/main/java/org/springframework/cloud/consul/configdatatests/SampleProperties.java

+8-3
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,22 @@
1616

1717
package org.springframework.cloud.consul.configdatatests;
1818

19-
import lombok.Data;
20-
2119
import org.springframework.boot.context.properties.ConfigurationProperties;
2220

2321
/**
2422
* @author Spencer Gibb
2523
*/
2624
@ConfigurationProperties("sample")
27-
@Data
2825
public class SampleProperties {
2926

3027
private String prop = "default value";
3128

29+
public String getProp() {
30+
return prop;
31+
}
32+
33+
public void setProp(String prop) {
34+
this.prop = prop;
35+
}
36+
3237
}

0 commit comments

Comments
 (0)