Maven's incremental compiler was messing up some of the classes that are copied from curator-test. So, turn it off for this module
Project: http://git-wip-us.apache.org/repos/asf/curator/repo Commit: http://git-wip-us.apache.org/repos/asf/curator/commit/4bc60637 Tree: http://git-wip-us.apache.org/repos/asf/curator/tree/4bc60637 Diff: http://git-wip-us.apache.org/repos/asf/curator/diff/4bc60637 Branch: refs/heads/CURATOR-426 Commit: 4bc6063757cc5aa4d2a7f6bf9c42110f266f82b9 Parents: 9f601cc Author: randgalt <[email protected]> Authored: Sat Jul 22 01:10:15 2017 -0500 Committer: randgalt <[email protected]> Committed: Sat Jul 22 01:10:15 2017 -0500 ---------------------------------------------------------------------- curator-test-zk34/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/curator/blob/4bc60637/curator-test-zk34/pom.xml ---------------------------------------------------------------------- diff --git a/curator-test-zk34/pom.xml b/curator-test-zk34/pom.xml index 3cd9946..3ec50cc 100644 --- a/curator-test-zk34/pom.xml +++ b/curator-test-zk34/pom.xml @@ -139,6 +139,14 @@ <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <useIncrementalCompilation>false</useIncrementalCompilation> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <executions> <execution>
