From 8c83d2c41e08192c24e092882b9b9863e49ee9ef Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Tue, 20 May 2014 20:04:41 +0900 Subject: [PATCH] Fix a problem where all classes are compiled again Motivation: Due to a known problem[1] of maven-compiler-plugin, our build always compiles everything from scratch, which is waste of time. Modifications: Exclude package-info.java from the source list. Result: Much shorter build time. [1]: https://jira.codehaus.org/browse/MCOMPILER-205 --- pom.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pom.xml b/pom.xml index 4d4859c871..b7fc1a7367 100644 --- a/pom.xml +++ b/pom.xml @@ -623,6 +623,9 @@ --> 256m 1024m + + **/package-info.java +