Author: sebb
Date: Mon Aug 19 18:30:52 2013
New Revision: 1515548

URL: http://svn.apache.org/r1515548
Log:
Javac needs different version of ASM from core(test)

Modified:
    commons/proper/jci/trunk/compilers/javac/pom.xml
    commons/proper/jci/trunk/core/pom.xml
    commons/proper/jci/trunk/pom.xml

Modified: commons/proper/jci/trunk/compilers/javac/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/jci/trunk/compilers/javac/pom.xml?rev=1515548&r1=1515547&r2=1515548&view=diff
==============================================================================
--- commons/proper/jci/trunk/compilers/javac/pom.xml (original)
+++ commons/proper/jci/trunk/compilers/javac/pom.xml Mon Aug 19 18:30:52 2013
@@ -40,6 +40,12 @@
             <groupId>org.vafer</groupId>
             <artifactId>dependency</artifactId>
         </dependency>
+        <dependency>
+            <!-- javac needs 2.2.3; core(test) is OK with 3.3.1 -->
+            <groupId>asm</groupId>
+            <artifactId>asm</artifactId>
+            <version>2.2.3</version>
+        </dependency>
         <!-- test dependencies -->
         <dependency>
             <groupId>org.apache.commons</groupId>

Modified: commons/proper/jci/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/jci/trunk/core/pom.xml?rev=1515548&r1=1515547&r2=1515548&view=diff
==============================================================================
--- commons/proper/jci/trunk/core/pom.xml (original)
+++ commons/proper/jci/trunk/core/pom.xml Mon Aug 19 18:30:52 2013
@@ -47,6 +47,8 @@
         <dependency>
             <groupId>asm</groupId>
             <artifactId>asm</artifactId>
+            <!-- Needs different version from javac currently -->
+            <version>3.3.1</version>
             <scope>test</scope>
         </dependency>
         <dependency>

Modified: commons/proper/jci/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/jci/trunk/pom.xml?rev=1515548&r1=1515547&r2=1515548&view=diff
==============================================================================
--- commons/proper/jci/trunk/pom.xml (original)
+++ commons/proper/jci/trunk/pom.xml Mon Aug 19 18:30:52 2013
@@ -289,12 +289,6 @@
 
             <!-- test dependencies -->
             <dependency>
-                <!-- core -->
-                <groupId>asm</groupId>
-                <artifactId>asm</artifactId>
-                <version>3.3</version>
-            </dependency>
-            <dependency>
                  <!-- core -->
                 <groupId>org.apache.commons</groupId>
                 <artifactId>commons-lang3</artifactId>


Reply via email to