You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2015/06/22 10:20:00 UTC

[05/10] wicket git commit: Added toolchain support to wicket 7

Added toolchain support to wicket 7


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/4b582cc7
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/4b582cc7
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/4b582cc7

Branch: refs/heads/build/wicket-7.0.0-M6
Commit: 4b582cc73d7724e2c9f2ba65b092e0dd537d3036
Parents: f069fc5
Author: Martijn Dashorst <da...@apache.org>
Authored: Tue Jun 16 13:33:55 2015 +0200
Committer: Martijn Dashorst <da...@apache.org>
Committed: Tue Jun 16 13:33:55 2015 +0200

----------------------------------------------------------------------
 pom.xml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/4b582cc7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 643d8d3..83f40c6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -885,6 +885,25 @@
 				</plugin>
 				<plugin>
 					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-toolchains-plugin</artifactId>
+					<version>1.1</version>
+					<executions>
+						<execution>
+							<goals>
+								<goal>toolchain</goal>
+							</goals>
+						</execution>
+					</executions>
+					<configuration>
+						<toolchains>
+							<jdk>
+								<version>${maven.compiler.source}</version>
+							</jdk>
+						</toolchains>
+					</configuration>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
 					<artifactId>maven-war-plugin</artifactId>
 					<version>2.6</version>
 					<configuration>
@@ -1022,6 +1041,10 @@
 							<aggregate>true</aggregate>
 						</configuration>
 					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-toolchains-plugin</artifactId>
+					</plugin>
 				</plugins>
 			</build>
 			<distributionManagement>