You are viewing a plain text version of this content. The canonical link for it is here.
Posted to droids-commits@incubator.apache.org by rf...@apache.org on 2011/11/27 16:22:01 UTC

svn commit: r1206756 - /incubator/droids/trunk/droids-wicket/pom.xml

Author: rfrovarp
Date: Sun Nov 27 16:22:00 2011
New Revision: 1206756

URL: http://svn.apache.org/viewvc?rev=1206756&view=rev
Log:
Use managed versions where possible. 
Update other versions.
Move Wicket to newest version of 1.4 instead of a beta. Didn't go to 1.5 as errors were being thrown that I'm not quite sure how to fix.

Modified:
    incubator/droids/trunk/droids-wicket/pom.xml

Modified: incubator/droids/trunk/droids-wicket/pom.xml
URL: http://svn.apache.org/viewvc/incubator/droids/trunk/droids-wicket/pom.xml?rev=1206756&r1=1206755&r2=1206756&view=diff
==============================================================================
--- incubator/droids/trunk/droids-wicket/pom.xml (original)
+++ incubator/droids/trunk/droids-wicket/pom.xml Sun Nov 27 16:22:00 2011
@@ -40,11 +40,6 @@ limitations under the License.
     <!--  WICKET DEPENDENCIES -->
     <dependency>
       <groupId>org.apache.wicket</groupId>
-      <artifactId>wicket</artifactId>
-      <version>${wicket.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.wicket</groupId>
       <artifactId>wicket-extensions</artifactId>
       <version>${wicket.version}</version>
     </dependency>
@@ -74,18 +69,17 @@ limitations under the License.
     <dependency>
       <groupId>commons-beanutils</groupId>
       <artifactId>commons-beanutils</artifactId>
-      <version>1.8.0</version>
+      <version>1.8.3</version>
     </dependency>
     <dependency>
       <groupId>commons-lang</groupId>
       <artifactId>commons-lang</artifactId>
-      <version>2.4</version>
+      <version>2.6</version>
     </dependency>
     <!-- LOGGING DEPENDENCIES - LOG4J -->
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
-      <version>1.6.1</version>
     </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>
@@ -95,13 +89,11 @@ limitations under the License.
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
-      <version>1.2.9</version>
     </dependency>
     <!--  JUNIT DEPENDENCY FOR TESTING -->
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.2</version>
       <scope>test</scope>
     </dependency>
     <!--  JETTY DEPENDENCIES FOR TESTING  -->
@@ -123,6 +115,11 @@ limitations under the License.
       <version>${jetty.version}</version>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+    	<groupId>org.apache.wicket</groupId>
+    	<artifactId>wicket</artifactId>
+    	<version>${wicket.version}</version>
+    </dependency>
   </dependencies>
   
   <build>
@@ -174,8 +171,8 @@ limitations under the License.
   </build>
   
   <properties>
-    <wicket.version>1.4-rc1</wicket.version>
-    <jetty.version>6.1.4</jetty.version>
+    <wicket.version>1.4.19</wicket.version>
+    <jetty.version>6.1.26</jetty.version>
   </properties>
   
 </project>