Browse Source

Generate property meta-data for test projects

Add annotation processor to `spring-boot-test` and
`spring-boot-test-autoconfigure`.

Fixes gh-6893
pull/6891/merge
Phillip Webb 9 years ago
parent
commit
ebb08c3655
  1. 6
      spring-boot-test-autoconfigure/pom.xml
  2. 6
      spring-boot-test/pom.xml

6
spring-boot-test-autoconfigure/pom.xml

@ -121,6 +121,12 @@ @@ -121,6 +121,12 @@
<artifactId>spring-security-test</artifactId>
<optional>true</optional>
</dependency>
<!-- Annotation processing -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- Test -->
<dependency>
<groupId>ch.qos.logback</groupId>

6
spring-boot-test/pom.xml

@ -105,6 +105,12 @@ @@ -105,6 +105,12 @@
<artifactId>htmlunit</artifactId>
<optional>true</optional>
</dependency>
<!-- Annotation processing -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>

Loading…
Cancel
Save