Author: ebourg
Date: Mon Apr 28 21:01:56 2014
New Revision: 1590792
URL: http://svn.apache.org/r1590792
Log:
Added a property specifying the version of ASM used
Modified:
commons/sandbox/javaflow/trunk/pom.xml
Modified: commons/sandbox/javaflow/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/javaflow/trunk/pom.xml?rev=1590792&r1=1590791&r2=1590792&view=diff
==============================================================================
--- commons/sandbox/javaflow/trunk/pom.xml (original)
+++ commons/sandbox/javaflow/trunk/pom.xml Mon Apr 28 21:01:56 2014
@@ -72,27 +72,27 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
- <version>4.0</version>
+ <version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
- <version>4.0</version>
+ <version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
- <version>4.0</version>
+ <version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
- <version>4.0</version>
+ <version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
- <version>4.0</version>
+ <version>${asm.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
@@ -123,6 +123,7 @@
<maven.compile.target>1.6</maven.compile.target>
<commons.componentid>javaflow</commons.componentid>
<commons.jira.componentid>12311186</commons.jira.componentid>
+ <asm.version>4.0</asm.version>
</properties>
<build>