From d942c13c8efde4204b88f958c0d565fa3df6387c 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 1bbba43990..10a0bd3548 100644 --- a/pom.xml +++ b/pom.xml @@ -624,6 +624,9 @@ --> 256m 1024m + + **/package-info.java +