You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by an...@apache.org on 2007/12/05 07:44:43 UTC

svn commit: r601224 - in /db/jdo/trunk/tck2-legacy: build.properties maven.xml project.properties project.xml

Author: andyj
Date: Tue Dec  4 22:44:41 2007
New Revision: 601224

URL: http://svn.apache.org/viewvc?rev=601224&view=rev
Log:
JDO-551 BCEL -> ASM change for legacy TCK

Modified:
    db/jdo/trunk/tck2-legacy/build.properties
    db/jdo/trunk/tck2-legacy/maven.xml
    db/jdo/trunk/tck2-legacy/project.properties
    db/jdo/trunk/tck2-legacy/project.xml

Modified: db/jdo/trunk/tck2-legacy/build.properties
URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck2-legacy/build.properties?rev=601224&r1=601223&r2=601224&view=diff
==============================================================================
--- db/jdo/trunk/tck2-legacy/build.properties (original)
+++ db/jdo/trunk/tck2-legacy/build.properties Tue Dec  4 22:44:41 2007
@@ -29,7 +29,7 @@
 # Properties for the execution of the TCK
 #
 iut.runtck.sysproperties = -Xmx512m
-iut.runtck.classpath = ${jpox.jdori.jarfile}${path.separator}${jpox.jdori.jarfile}${path.separator}${log4j.jarfile}${path.separator}${bcel.jarfile}${path.separator}${jpox.dbcp.jarfile}${path.separator}${jpox.c3p0.jarfile}
+iut.runtck.classpath = ${jpox.jdori.jarfile}${path.separator}${jpox.jdori.jarfile}${path.separator}${log4j.jarfile}${path.separator}${asm.jarfile}${path.separator}${jpox.dbcp.jarfile}${path.separator}${jpox.c3p0.jarfile}
 
 ##
 # Properties for the execution of the IUT enhancer
@@ -42,7 +42,7 @@
 iut.enhancer.options = -v -d "${enhanced.dir}"
 iut.enhancer.args = ${jdo.tck.jdometadata.files}
 iut.enhancer.sysproperties =
-iut.enhancer.cp = ${jpox.enhancer.jarfile}${path.separator}${jpox.jdori.jarfile}${path.separator}${log4j.jarfile}${path.separator}${bcel.jarfile}
+iut.enhancer.cp = ${jpox.enhancer.jarfile}${path.separator}${jpox.jdori.jarfile}${path.separator}${log4j.jarfile}${path.separator}${asm.jarfile}
 
 ##
 # Properties for the datastore

Modified: db/jdo/trunk/tck2-legacy/maven.xml
URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck2-legacy/maven.xml?rev=601224&r1=601223&r2=601224&view=diff
==============================================================================
--- db/jdo/trunk/tck2-legacy/maven.xml (original)
+++ db/jdo/trunk/tck2-legacy/maven.xml Tue Dec  4 22:44:41 2007
@@ -653,7 +653,7 @@
         <pathelement location="${jpox.enhancer.jarfile}" />
         <pathelement location="${jta.jarfile}" />
         <pathelement location="${xmlparser}" />
-        <pathelement location="${bcel.jarfile}" />
+        <pathelement location="${asm.jarfile}" />
         <pathelement location="${log4j.jarfile}" />
         <pathelement location="${jpox.dbcp.jarfile}" />
         <pathelement location="${jpox.c3p0.jarfile}" />

Modified: db/jdo/trunk/tck2-legacy/project.properties
URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck2-legacy/project.properties?rev=601224&r1=601223&r2=601224&view=diff
==============================================================================
--- db/jdo/trunk/tck2-legacy/project.properties (original)
+++ db/jdo/trunk/tck2-legacy/project.properties Tue Dec  4 22:44:41 2007
@@ -56,7 +56,7 @@
 jpox.jdori.jarfile = ${pom.getDependencyPath('jpox:jpox-core')}
 jpox.rdbms.jarfile = ${pom.getDependencyPath('jpox:jpox-rdbms')}
 jpox.enhancer.jarfile = ${pom.getDependencyPath('jpox:jpox-enhancer')}
-bcel.jarfile = ${pom.getDependencyPath('org.apache.bcel:bcel')}
+asm.jarfile = ${pom.getDependencyPath('asm:asm')}
 junit.jarfile = ${pom.getDependencyPath('junit:junit')}
 jta.jarfile = ${pom.getDependencyPath('javax.transaction:transaction-api')}
 springcore.jarfile = ${pom.getDependencyPath('org.springframework:spring-core')}

Modified: db/jdo/trunk/tck2-legacy/project.xml
URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck2-legacy/project.xml?rev=601224&r1=601223&r2=601224&view=diff
==============================================================================
--- db/jdo/trunk/tck2-legacy/project.xml (original)
+++ db/jdo/trunk/tck2-legacy/project.xml Tue Dec  4 22:44:41 2007
@@ -90,10 +90,9 @@
             <version>3.8.1</version>
         </dependency>
         <dependency>
-            <groupId>org.apache.bcel</groupId>
-            <artifactId>bcel</artifactId>
-            <version>5.2</version>
-            <url>http://jakarta.apache.org/bcel/</url>
+            <groupId>asm</groupId>
+            <artifactId>asm</artifactId>
+            <version>3.0</version>
         </dependency>
         <dependency>
             <groupId>log4j</groupId>