Commit ebb08c36 authored by Phillip Webb's avatar Phillip Webb

Generate property meta-data for test projects

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

Fixes gh-6893
parent 045f3571
...@@ -121,6 +121,12 @@ ...@@ -121,6 +121,12 @@
<artifactId>spring-security-test</artifactId> <artifactId>spring-security-test</artifactId>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<!-- Annotation processing -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- Test --> <!-- Test -->
<dependency> <dependency>
<groupId>ch.qos.logback</groupId> <groupId>ch.qos.logback</groupId>
......
...@@ -105,6 +105,12 @@ ...@@ -105,6 +105,12 @@
<artifactId>htmlunit</artifactId> <artifactId>htmlunit</artifactId>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<!-- Annotation processing -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- Test --> <!-- Test -->
<dependency> <dependency>
<groupId>org.apache.tomcat.embed</groupId> <groupId>org.apache.tomcat.embed</groupId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment