#430 Upgrade to cglib 3.0

This commit is contained in:
Timo Westkämper 2013-07-01 21:52:59 +03:00
parent 5c4c163412
commit 4e55d24ac6
2 changed files with 13 additions and 2 deletions

View File

@ -36,7 +36,12 @@
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>2.2.2</version>
<version>${cglib.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
<version>4.0</version>
</dependency>
<!-- test -->

View File

@ -60,7 +60,13 @@
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.0</version>
<scope>test</scope>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>