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/08/20 23:13:20 UTC

wicket git commit: Add a profile for BuildBot runs so that Wicket 6.x is being built again with JDK 6.x

Repository: wicket
Updated Branches:
  refs/heads/wicket-6.x 62f95feb6 -> 5b6397ba3


Add a profile for BuildBot runs so that Wicket 6.x is being built again with JDK 6.x

BUILDS-85 Maven needs to be run with JDK 7.x so that it is possible to deploy to Nexus (which is behind SSL proxy that doesn't allow old SSL clients)


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

Branch: refs/heads/wicket-6.x
Commit: 5b6397ba36aa3d77625ac1bd31715622c95a7159
Parents: 62f95fe
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Thu Aug 20 23:10:47 2015 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Thu Aug 20 23:10:47 2015 +0200

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


http://git-wip-us.apache.org/repos/asf/wicket/blob/5b6397ba/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d3b0702..6501090 100644
--- a/pom.xml
+++ b/pom.xml
@@ -154,6 +154,33 @@
 				</plugins>
 			</build>
 		</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.6</version>
+									<vendor>oracle</vendor>
+								</jdk>
+							</toolchains>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
 	</profiles>
 	<url>http://wicket.apache.org/${project.artifactId}</url>
 	<inceptionYear>2006</inceptionYear>