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 2010/12/26 22:03:59 UTC

svn commit: r1052942 - in /wicket/trunk: ./ archetypes/quickstart/src/main/resources/archetype-resources/ testing/wicket-threadtest/ wicket-auth-roles/ wicket-datetime/ wicket-devutils/ wicket-examples/ wicket-extensions/ wicket-guice/ wicket-ioc/ wick...

Author: mgrigorov
Date: Sun Dec 26 21:03:59 2010
New Revision: 1052942

URL: http://svn.apache.org/viewvc?rev=1052942&view=rev
Log:
WICKET-3261 Create wicket-core Maven module that contains wicket + wicket-util + wicket-request

All Maven modules depend on wicket-core module (-util and -profile come as dependencies).
This way the IDEs can manage the dependencies.

Modified:
    wicket/trunk/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
    wicket/trunk/pom.xml
    wicket/trunk/testing/wicket-threadtest/pom.xml
    wicket/trunk/wicket-auth-roles/pom.xml
    wicket/trunk/wicket-datetime/pom.xml
    wicket/trunk/wicket-devutils/pom.xml
    wicket/trunk/wicket-examples/pom.xml
    wicket/trunk/wicket-extensions/pom.xml
    wicket/trunk/wicket-guice/pom.xml
    wicket/trunk/wicket-ioc/pom.xml
    wicket/trunk/wicket-jmx/pom.xml
    wicket/trunk/wicket-objectssizeof-agent/pom.xml
    wicket/trunk/wicket-spring/pom.xml
    wicket/trunk/wicket-velocity/pom.xml

Modified: wicket/trunk/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml (original)
+++ wicket/trunk/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml Sun Dec 26 21:03:59 2010
@@ -23,7 +23,7 @@
 		<!--  WICKET DEPENDENCIES -->
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 			<version>${wicket.version}</version>
 		</dependency>
 		<!--
@@ -131,4 +131,4 @@
 		<jetty.version>6.1.25</jetty.version>
 	</properties>
 	#end
-</project>
\ No newline at end of file
+</project>

Modified: wicket/trunk/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/pom.xml (original)
+++ wicket/trunk/pom.xml Sun Dec 26 21:03:59 2010
@@ -273,7 +273,7 @@
 		<dependencies>
 			<dependency>
 				<groupId>org.apache.wicket</groupId>
-				<artifactId>wicket</artifactId>
+				<artifactId>wicket-core</artifactId>
 				<version>${project.version}</version>
 				<type>jar</type>
 			</dependency>

Modified: wicket/trunk/testing/wicket-threadtest/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/testing/wicket-threadtest/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/testing/wicket-threadtest/pom.xml (original)
+++ wicket/trunk/testing/wicket-threadtest/pom.xml Sun Dec 26 21:03:59 2010
@@ -35,7 +35,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>

Modified: wicket/trunk/wicket-auth-roles/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-auth-roles/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-auth-roles/pom.xml (original)
+++ wicket/trunk/wicket-auth-roles/pom.xml Sun Dec 26 21:03:59 2010
@@ -38,7 +38,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 	</dependencies>
 </project>

Modified: wicket/trunk/wicket-datetime/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-datetime/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-datetime/pom.xml (original)
+++ wicket/trunk/wicket-datetime/pom.xml Sun Dec 26 21:03:59 2010
@@ -31,7 +31,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>joda-time</groupId>
@@ -63,4 +63,4 @@
 			</plugin>
 		</plugins>
 	</build>
-</project>
\ No newline at end of file
+</project>

Modified: wicket/trunk/wicket-devutils/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-devutils/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-devutils/pom.xml (original)
+++ wicket/trunk/wicket-devutils/pom.xml Sun Dec 26 21:03:59 2010
@@ -40,7 +40,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 	</dependencies>
 </project>

Modified: wicket/trunk/wicket-examples/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-examples/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-examples/pom.xml (original)
+++ wicket/trunk/wicket-examples/pom.xml Sun Dec 26 21:03:59 2010
@@ -32,7 +32,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>

Modified: wicket/trunk/wicket-extensions/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-extensions/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-extensions/pom.xml (original)
+++ wicket/trunk/wicket-extensions/pom.xml Sun Dec 26 21:03:59 2010
@@ -36,7 +36,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 	</dependencies>
 </project>

Modified: wicket/trunk/wicket-guice/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-guice/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-guice/pom.xml (original)
+++ wicket/trunk/wicket-guice/pom.xml Sun Dec 26 21:03:59 2010
@@ -36,7 +36,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>

Modified: wicket/trunk/wicket-ioc/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-ioc/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-ioc/pom.xml (original)
+++ wicket/trunk/wicket-ioc/pom.xml Sun Dec 26 21:03:59 2010
@@ -36,7 +36,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>cglib</groupId>

Modified: wicket/trunk/wicket-jmx/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-jmx/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-jmx/pom.xml (original)
+++ wicket/trunk/wicket-jmx/pom.xml Sun Dec 26 21:03:59 2010
@@ -36,7 +36,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 	</dependencies>
 </project>

Modified: wicket/trunk/wicket-objectssizeof-agent/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-objectssizeof-agent/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-objectssizeof-agent/pom.xml (original)
+++ wicket/trunk/wicket-objectssizeof-agent/pom.xml Sun Dec 26 21:03:59 2010
@@ -34,7 +34,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 	</dependencies>
 

Modified: wicket/trunk/wicket-spring/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-spring/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-spring/pom.xml (original)
+++ wicket/trunk/wicket-spring/pom.xml Sun Dec 26 21:03:59 2010
@@ -36,7 +36,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>

Modified: wicket/trunk/wicket-velocity/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-velocity/pom.xml?rev=1052942&r1=1052941&r2=1052942&view=diff
==============================================================================
--- wicket/trunk/wicket-velocity/pom.xml (original)
+++ wicket/trunk/wicket-velocity/pom.xml Sun Dec 26 21:03:59 2010
@@ -39,7 +39,7 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
+			<artifactId>wicket-core</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>velocity</groupId>