Update the metadata annotation processor to support incremental builds

This commit udpdates the metadata annotation processor so that change
data from an incremental build is merged with the metadata from the
previous build.

Closes gh-2321
This commit is contained in:
Kris De Volder
2015-01-09 10:37:51 -08:00
committed by Andy Wilkinson
parent ccb2828945
commit 8df43a8a79
10 changed files with 710 additions and 61 deletions

View File

@@ -29,6 +29,10 @@
<artifactId>lombok</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
@@ -36,7 +40,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!-- Ensure own annotation processor doens't kick in -->
<!-- Ensure own annotation processor doesn't kick in -->
<proc>none</proc>
</configuration>
</plugin>