From 59f3d550fec32cc9ddcc04a90679a437738c362d 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 230307185d..761cfbad7b 100644 --- a/pom.xml +++ b/pom.xml @@ -625,6 +625,9 @@ --> 256m 1024m + + **/package-info.java +