You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2015/06/24 14:58:18 UTC

[12/50] [abbrv] 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/1b803d17
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/1b803d17
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/1b803d17

Branch: refs/heads/master
Commit: 1b803d173cfb1d41252a02a631a575dc558ade40
Parents: 26cf61d
Author: Martijn Dashorst <da...@apache.org>
Authored: Tue Jun 16 13:33:55 2015 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Wed Jun 24 14:56:33 2015 +0300

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


http://git-wip-us.apache.org/repos/asf/wicket/blob/1b803d17/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9756569..ac3fd2c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -890,6 +890,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>
@@ -1027,6 +1046,10 @@
 							<aggregate>true</aggregate>
 						</configuration>
 					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-toolchains-plugin</artifactId>
+					</plugin>
 				</plugins>
 			</build>
 			<distributionManagement>