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:44:37 UTC

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

Repository: wicket
Updated Branches:
  refs/heads/master c55536ebc -> 4dc4fa92c


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


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

Branch: refs/heads/master
Commit: 4dc4fa92c8d834d52d2e4e64f6ce006f2fd5fa90
Parents: c55536e
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Sun Nov 20 10:44:20 2016 +0100
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Sun Nov 20 10:44:20 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/wicket/blob/4dc4fa92/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c2f8ea6..77e9661 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1228,6 +1228,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.8</version>
+									<vendor>oracle</vendor>
+								</jdk>
+							</toolchains>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
 	</profiles>
 	<reporting>
 		<plugins>