Author: tchemit Date: 2011-08-22 12:50:32 +0200 (Mon, 22 Aug 2011) New Revision: 2175 Url: http://nuiton.org/repositories/revision/nuiton-utils/2175 Log: fix asm bad dependencies Modified: trunk/nuiton-profiling/pom.xml trunk/pom.xml Modified: trunk/nuiton-profiling/pom.xml =================================================================== --- trunk/nuiton-profiling/pom.xml 2011-08-22 10:47:48 UTC (rev 2174) +++ trunk/nuiton-profiling/pom.xml 2011-08-22 10:50:32 UTC (rev 2175) @@ -50,13 +50,42 @@ <artifactId>commons-lang</artifactId> </dependency> + <!-- aspectwerkz use asm* dependencies which are not on central... --> + <!-- Event if we relocated them to a org.nuiton.thirdparty groupId --> <dependency> <groupId>aspectwerkz</groupId> <artifactId>aspectwerkz-core</artifactId> <scope>runtime</scope> + <exclusions> + <exclusion> + <groupId>asm</groupId> + <artifactId>asm</artifactId> + </exclusion> + <exclusion> + <groupId>asm</groupId> + <artifactId>asm-attrs</artifactId> + </exclusion> + <exclusion> + <groupId>asm</groupId> + <artifactId>asm-util</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> + <groupId>org.nuiton.thirdparty</groupId> + <artifactId>asm</artifactId> + </dependency> + <dependency> + <groupId>org.nuiton.thirdparty</groupId> + <artifactId>asm-attrs</artifactId> + </dependency> + <dependency> + <groupId>org.nuiton.thirdparty</groupId> + <artifactId>asm-util</artifactId> + </dependency> + + <dependency> <groupId>aspectwerkz</groupId> <artifactId>aspectwerkz</artifactId> <scope>compile</scope> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2011-08-22 10:47:48 UTC (rev 2174) +++ trunk/pom.xml 2011-08-22 10:50:32 UTC (rev 2175) @@ -22,7 +22,9 @@ <http://www.gnu.org/licenses/lgpl-3.0.html>. #L% --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -90,6 +92,22 @@ <version>${aspectwerkzVersion}</version> </dependency> + <dependency> + <groupId>org.nuiton.thirdparty</groupId> + <artifactId>asm</artifactId> + <version>${asmVersion}</version> + </dependency> + <dependency> + <groupId>org.nuiton.thirdparty</groupId> + <artifactId>asm-attrs</artifactId> + <version>${asmVersion}</version> + </dependency> + <dependency> + <groupId>org.nuiton.thirdparty</groupId> + <artifactId>asm-util</artifactId> + <version>${asmVersion}</version> + </dependency> + </dependencies> </dependencyManagement> @@ -184,11 +202,12 @@ <projectId>nuiton-utils</projectId> <nuitonI18nVersion>2.4.1</nuitonI18nVersion> <aspectwerkzVersion>2.0</aspectwerkzVersion> + <asmVersion>1.5.4-snapshot</asmVersion> <xworkVersion>2.2.3</xworkVersion> <!-- i18n configuration --> <i18n.bundles>fr_FR,en_GB,es_ES</i18n.bundles> - + </properties> <distributionManagement>