You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2013/07/30 14:26:09 UTC

svn commit: r1508411 - /commons/sandbox/weaver/branches/priv-asm/pom.xml

Author: mbenson
Date: Tue Jul 30 12:26:09 2013
New Revision: 1508411

URL: http://svn.apache.org/r1508411
Log:
asm dependency management

Modified:
    commons/sandbox/weaver/branches/priv-asm/pom.xml

Modified: commons/sandbox/weaver/branches/priv-asm/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/weaver/branches/priv-asm/pom.xml?rev=1508411&r1=1508410&r2=1508411&view=diff
==============================================================================
--- commons/sandbox/weaver/branches/priv-asm/pom.xml (original)
+++ commons/sandbox/weaver/branches/priv-asm/pom.xml Tue Jul 30 12:26:09 2013
@@ -45,6 +45,7 @@
     <commons.rc.version>RC1</commons.rc.version>
     <!--commons.jira.id>WEAVER</commons.jira.id>
     <commons.jira.pid>666</commons.jira.pid-->
+    <asm.version>4.1</asm.version>
   </properties>
 
   <developers>
@@ -106,7 +107,27 @@
       <dependency>
         <groupId>org.ow2.asm</groupId>
         <artifactId>asm</artifactId>
-        <version>4.1</version>
+        <version>${asm.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.ow2.asm</groupId>
+        <artifactId>asm-commons</artifactId>
+        <version>${asm.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.ow2.asm</groupId>
+        <artifactId>asm-tree</artifactId>
+        <version>${asm.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.ow2.asm</groupId>
+        <artifactId>asm-util</artifactId>
+        <version>${asm.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.ow2.asm</groupId>
+        <artifactId>asm-debug-all</artifactId>
+        <version>${asm.version}</version>
       </dependency>
       <dependency>
         <groupId>junit</groupId>