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 2016/11/20 09:42:14 UTC

wicket git commit: Add Maven profile for Builbot so that it uses toolchains with JDK 1.7

Repository: wicket
Updated Branches:
  refs/heads/wicket-7.x 7b21d8074 -> a1fd7ec53


Add Maven profile for Builbot so that it uses toolchains with JDK 1.7


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

Branch: refs/heads/wicket-7.x
Commit: a1fd7ec532f34a1ddb8cd4ca57f151e788fa0b11
Parents: 7b21d80
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Sun Nov 20 10:41:34 2016 +0100
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Sun Nov 20 10:41:34 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/wicket/blob/a1fd7ec5/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 26a61e0..e3e8fa9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1189,6 +1189,33 @@
 				<additionalparam>-Xdoclint:none</additionalparam>
 			</properties>
 		</profile>
+		<profile>
+			<id>buildbot</id>
+			<build>
+				<plugins>
+					<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.7</version>
+									<vendor>oracle</vendor>
+								</jdk>
+							</toolchains>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
 	</profiles>
 	<reporting>
 		<plugins>