Repository: camel Updated Branches: refs/heads/master f0b8e011f -> 0e369b47d
Use maven compiler plugin 2.5.1 as 3.0/3.1 recompiles everything all the time, even if nothing has changed or only 1 file. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/0e369b47 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/0e369b47 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/0e369b47 Branch: refs/heads/master Commit: 0e369b47da54bbb3234d49091dcac1a68f908813 Parents: f0b8e01 Author: Claus Ibsen <[email protected]> Authored: Tue May 6 10:09:01 2014 +0200 Committer: Claus Ibsen <[email protected]> Committed: Tue May 6 10:09:01 2014 +0200 ---------------------------------------------------------------------- parent/pom.xml | 1 + pom.xml | 5 +++++ 2 files changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/0e369b47/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index b124fc9..e24823d 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -2329,6 +2329,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> + <version>${maven-compiler-plugin-version}</version> <configuration> <source>1.6</source> <target>1.6</target> http://git-wip-us.apache.org/repos/asf/camel/blob/0e369b47/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index be923b0..186d307 100755 --- a/pom.xml +++ b/pom.xml @@ -46,6 +46,10 @@ <jdk.version>1.6</jdk.version> <compiler.fork>1.6</compiler.fork> + <!-- use maven compiler 2.5.1 as 3.0/3.1 recompiles everything even if nothingh has changed, or only 1 file, + so 2.5.1 is much faster to use for development --> + <maven-compiler-plugin-version>2.5.1</maven-compiler-plugin-version> + <!-- eclipse plugin need the jaxb in this pom.xml file --> <jaxb-version>2.1.13</jaxb-version> </properties> @@ -241,6 +245,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> + <version>${maven-compiler-plugin-version}</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target>
