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 2010/09/21 11:51:03 UTC

svn commit: r999294 - /wicket/branches/wicket-1.4.x/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml

Author: dashorst
Date: Tue Sep 21 09:51:03 2010
New Revision: 999294

URL: http://svn.apache.org/viewvc?rev=999294&view=rev
Log:
Upgraded dependencies and maven plugins to their latest releases. Local build still worked.

Modified:
    wicket/branches/wicket-1.4.x/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml

Modified: wicket/branches/wicket-1.4.x/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml?rev=999294&r1=999293&r2=999294&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml (original)
+++ wicket/branches/wicket-1.4.x/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml Tue Sep 21 09:51:03 2010
@@ -19,6 +19,12 @@
 			<distribution>repo</distribution>
 		</license>
 	</licenses>
+	<properties>
+		<wicket.version>1.4-SNAPSHOT</wicket.version>
+		<jetty.version>6.1.25</jetty.version>
+		<slf4j.version>1.5.8</slf4j.version>
+		<log4j.version>1.2.14</log4j.version>
+	</properties>
 	<dependencies>
 		<!--  WICKET DEPENDENCIES -->
 		<dependency>
@@ -36,7 +42,7 @@
 		<dependency>
 			<groupId>org.slf4j</groupId>
 			<artifactId>slf4j-log4j12</artifactId>
-			<version>1.4.2</version>
+			<version>${slf4j.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>log4j</groupId>
@@ -48,7 +54,7 @@
 		<dependency>
 			<groupId>junit</groupId>
 			<artifactId>junit</artifactId>
-			<version>3.8.2</version>
+			<version>4.8.1</version>
 			<scope>test</scope>
 		</dependency>
 
@@ -120,15 +126,12 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-eclipse-plugin</artifactId>
+				<version>2.8</version>
 				<configuration>
 					<downloadSources>true</downloadSources>
 				</configuration>
 			</plugin>
 		</plugins>
 	</build>
-	<properties>
-		<wicket.version>1.4-SNAPSHOT</wicket.version>
-		<jetty.version>6.1.4</jetty.version>
-	</properties>
 	#end
 </project>
\ No newline at end of file