You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@empire-db.apache.org by do...@apache.org on 2010/11/14 19:47:13 UTC

svn commit: r1035050 - in /incubator/empire-db/trunk: empire-db-struts2/pom.xml pom.xml

Author: doebele
Date: Sun Nov 14 18:47:13 2010
New Revision: 1035050

URL: http://svn.apache.org/viewvc?rev=1035050&view=rev
Log:
Added missing javassist dependency required to run struts2 examples

Modified:
    incubator/empire-db/trunk/empire-db-struts2/pom.xml
    incubator/empire-db/trunk/pom.xml

Modified: incubator/empire-db/trunk/empire-db-struts2/pom.xml
URL: http://svn.apache.org/viewvc/incubator/empire-db/trunk/empire-db-struts2/pom.xml?rev=1035050&r1=1035049&r2=1035050&view=diff
==============================================================================
--- incubator/empire-db/trunk/empire-db-struts2/pom.xml (original)
+++ incubator/empire-db/trunk/empire-db-struts2/pom.xml Sun Nov 14 18:47:13 2010
@@ -42,12 +42,11 @@
         <dependency>
             <groupId>org.apache.struts.xwork</groupId>
             <artifactId>xwork-core</artifactId>
-            <!-- <version>2.2.1</version> -->
         </dependency>
-		<!-- <dependency>
+		<dependency>
 		    <groupId>javassist</groupId>
 		    <artifactId>javassist</artifactId>
-		</dependency> -->
+		</dependency>
 		<dependency>
 		    <groupId>javax.servlet</groupId>
 		    <artifactId>servlet-api</artifactId>

Modified: incubator/empire-db/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/empire-db/trunk/pom.xml?rev=1035050&r1=1035049&r2=1035050&view=diff
==============================================================================
--- incubator/empire-db/trunk/pom.xml (original)
+++ incubator/empire-db/trunk/pom.xml Sun Nov 14 18:47:13 2010
@@ -251,6 +251,12 @@
 	            <version>2.2.1</version>
 	        </dependency>
 			<dependency>
+				<!-- DO NOT REMOVE: required for struts2 extentions! -->
+			    <groupId>javassist</groupId>
+			    <artifactId>javassist</artifactId>
+			    <version>3.8.0.GA</version>
+			</dependency>
+			<dependency>
 				<groupId>javax.servlet</groupId>
 				<artifactId>servlet-api</artifactId>
 				<version>2.4</version>