Author: tchemit Date: 2014-03-17 10:57:34 +0100 (Mon, 17 Mar 2014) New Revision: 1149 Url: http://forge.codelutin.com/projects/coser/repository/revisions/1149 Log: fix javassist dependencies Modified: trunk/coser-business/pom.xml trunk/pom.xml Modified: trunk/coser-business/pom.xml =================================================================== --- trunk/coser-business/pom.xml 2014-03-16 19:00:12 UTC (rev 1148) +++ trunk/coser-business/pom.xml 2014-03-17 09:57:34 UTC (rev 1149) @@ -98,7 +98,7 @@ <artifactId>xwork-core</artifactId> </dependency> <dependency> - <groupId>javassist</groupId> + <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> </dependency> <dependency> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2014-03-16 19:00:12 UTC (rev 1148) +++ trunk/pom.xml 2014-03-17 09:57:34 UTC (rev 1149) @@ -228,6 +228,12 @@ <groupId>org.apache.struts</groupId> <artifactId>struts2-core</artifactId> <version>${struts.version}</version> + <exclusions> + <exclusion> + <groupId>javassist</groupId> + <artifactId>javassist</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -246,12 +252,18 @@ <groupId>org.apache.struts.xwork</groupId> <artifactId>xwork-core</artifactId> <version>${struts.version}</version> + <exclusions> + <exclusion> + <groupId>javassist</groupId> + <artifactId>javassist</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> - <groupId>javassist</groupId> + <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> - <version>3.12.1.GA</version> + <version>3.18.1-GA</version> <scope>runtime</scope> </dependency>
participants (1)
-
tchemit@users.forge.codelutin.com