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/10/18 12:58:28 UTC

wicket git commit: Add maven-toolchains-plugin to be able to use Java 7+ for deployment and Java 1.5 for the build itself

Repository: wicket
Updated Branches:
  refs/heads/wicket-1.5.x 312bf4e7d -> 299943cbe


Add maven-toolchains-plugin to be able to use Java 7+ for deployment and Java 1.5 for the build itself


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

Branch: refs/heads/wicket-1.5.x
Commit: 299943cbe85f0da6c02102412d2e5c767bf1c030
Parents: 312bf4e
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Sun Oct 18 12:57:43 2015 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Sun Oct 18 12:57:43 2015 +0200

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


http://git-wip-us.apache.org/repos/asf/wicket/blob/299943cb/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a295820..6c86b23 100644
--- a/pom.xml
+++ b/pom.xml
@@ -552,6 +552,25 @@
 				<version>${maven.javadoc.version}</version>
 				<inherited>true</inherited>
 			</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>1.5</version>
+							</jdk>
+						</toolchains>
+					</configuration>
+				</plugin>
 		</plugins>
 		<pluginManagement>
 			<plugins>