You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2013/05/25 22:57:48 UTC

svn commit: r1486364 - /roller/trunk/weblogger-business/pom.xml

Author: snoopdave
Date: Sat May 25 20:57:48 2013
New Revision: 1486364

URL: http://svn.apache.org/r1486364
Log:
Fix java.lang.NoClassDefFoundError: org/apache/oro/text/perl/Perl5Util caused by absence of ORO

Not totally sure why this just became a problem. ORO was embeded in Commons Validator 1.3.0, but is not in 1.3.1, but we switched to 1.3.1 in Roller 5.0.1. I suspect that the recent Lucene changes caused ORO to no longer be a dependency.

Modified:
    roller/trunk/weblogger-business/pom.xml

Modified: roller/trunk/weblogger-business/pom.xml
URL: http://svn.apache.org/viewvc/roller/trunk/weblogger-business/pom.xml?rev=1486364&r1=1486363&r2=1486364&view=diff
==============================================================================
--- roller/trunk/weblogger-business/pom.xml (original)
+++ roller/trunk/weblogger-business/pom.xml Sat May 25 20:57:48 2013
@@ -217,6 +217,11 @@
             <version>1.3.1</version>
             <type>jar</type>
         </dependency>
+		<dependency>
+			<groupId>oro</groupId>
+			<artifactId>oro</artifactId>
+			<version>2.0.8</version>
+		</dependency>
     </dependencies>
 
     <build>
@@ -280,7 +285,7 @@
                     <dependency>
                         <groupId>org.apache.velocity</groupId>
                         <artifactId>velocity</artifactId>
-                        <version>1.6</version>
+                        <version>1.7</version>
                     </dependency>
                     <dependency>
                         <groupId>org.apache.roller</groupId>