You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2014/04/18 00:07:09 UTC

[8/8] git commit: Make experimental modules releasable in 6.x and 7.x

Make experimental modules releasable in 6.x and 7.x

Having the experimental modules in one and the same groupid makes it
impossible to maintain the experimental modules in both 6.x and 7.x
branches--they will be unreleasable due to conflicting version numbers
and users will be confused which release is compatible with which
version of Wicket.

By moving the experimental modules into their own wicket version specific
group id, we can release both experimental modules with wicket releases
for the corresponding major branches.


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

Branch: refs/heads/master
Commit: f591343b2ef42fda0518c7eaeecffb76f56845d5
Parents: 989c17a
Author: Martijn Dashorst <da...@apache.org>
Authored: Fri Apr 18 00:06:49 2014 +0200
Committer: Martijn Dashorst <da...@apache.org>
Committed: Fri Apr 18 00:06:49 2014 +0200

----------------------------------------------------------------------
 pom.xml                                       | 2 +-
 testing/wicket-common-tests/pom.xml           | 2 +-
 wicket-examples/pom.xml                       | 2 +-
 wicket-experimental/pom.xml                   | 1 +
 wicket-experimental/wicket-atmosphere/pom.xml | 2 +-
 5 files changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/f591343b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 4fd24a5..addd72b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -365,7 +365,7 @@
 				<type>jar</type>
 			</dependency>
 			<dependency>
-				<groupId>org.apache.wicket</groupId>
+				<groupId>org.apache.wicket.experimental.wicket-7.x</groupId>
 				<artifactId>wicket-atmosphere</artifactId>
 				<version>0.10-SNAPSHOT</version>
 				<type>jar</type>

http://git-wip-us.apache.org/repos/asf/wicket/blob/f591343b/testing/wicket-common-tests/pom.xml
----------------------------------------------------------------------
diff --git a/testing/wicket-common-tests/pom.xml b/testing/wicket-common-tests/pom.xml
index 6f594df..02d631f 100644
--- a/testing/wicket-common-tests/pom.xml
+++ b/testing/wicket-common-tests/pom.xml
@@ -104,7 +104,7 @@
 			<scope>test</scope>
 		</dependency>
 		<dependency>
-			<groupId>org.apache.wicket</groupId>
+			<groupId>org.apache.wicket.experimental.wicket-7.x</groupId>
 			<artifactId>wicket-atmosphere</artifactId>
 			<scope>test</scope>
 		</dependency>

http://git-wip-us.apache.org/repos/asf/wicket/blob/f591343b/wicket-examples/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-examples/pom.xml b/wicket-examples/pom.xml
index 3d927e2..eecb7a2 100644
--- a/wicket-examples/pom.xml
+++ b/wicket-examples/pom.xml
@@ -44,7 +44,7 @@
 			<artifactId>wicket-extensions</artifactId>
 		</dependency>
 		<dependency>
-			<groupId>org.apache.wicket</groupId>
+			<groupId>org.apache.wicket.experimental.wicket-7.x</groupId>
 			<artifactId>wicket-atmosphere</artifactId>
 		</dependency>
 		<dependency>

http://git-wip-us.apache.org/repos/asf/wicket/blob/f591343b/wicket-experimental/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-experimental/pom.xml b/wicket-experimental/pom.xml
index 8534744..15d79c3 100644
--- a/wicket-experimental/pom.xml
+++ b/wicket-experimental/pom.xml
@@ -23,6 +23,7 @@
 		<version>7.0.0-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
+	<groupId>org.apache.wicket.experimental.wicket-7.x</groupId>
 	<artifactId>wicket-experimental</artifactId>
 	<packaging>pom</packaging>
 	<name>Wicket-Experimental</name>

http://git-wip-us.apache.org/repos/asf/wicket/blob/f591343b/wicket-experimental/wicket-atmosphere/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-experimental/wicket-atmosphere/pom.xml b/wicket-experimental/wicket-atmosphere/pom.xml
index c375b42..ce1c272 100644
--- a/wicket-experimental/wicket-atmosphere/pom.xml
+++ b/wicket-experimental/wicket-atmosphere/pom.xml
@@ -18,7 +18,7 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 	<parent>
-		<groupId>org.apache.wicket</groupId>
+		<groupId>org.apache.wicket.experimental.wicket-7.x</groupId>
 		<artifactId>wicket-experimental</artifactId>
 		<version>7.0.0-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>