important remark: overriding dependencies requires maven 2.0.9. another remark: spring 2.5.6 uses aspectj 1.6.1, so then you have to change this overriding again, as there is no new version of the aspectj-maven-plugin to upgrade to.
greetings, dirk mraible wrote: > > You need to override the aspectj-maven-plugins dependency versions to fix > this: > > <plugin> > <groupId>org.codehaus.mojo</groupId> > <artifactId>aspectj-maven-plugin</artifactId> > <version>1.0</version> > <configuration> > <source>1.5</source> > <verbose>true</verbose> > <complianceLevel>1.5</complianceLevel> > <showWeaveInfo>true</showWeaveInfo> > <aspectLibraries> > <aspectLibrary> > <groupId>org.springframework</groupId> > <artifactId>spring-aspects</artifactId> > </aspectLibrary> > </aspectLibraries> > </configuration> > <executions> > <execution> > <goals> > <goal>compile</goal> > </goals> > </execution> > </executions> > <dependencies> > <dependency> > <groupId>org.aspectj</groupId> > <artifactId>aspectjrt</artifactId> > <version>1.6.0</version> > </dependency> > <dependency> > <groupId>org.aspectj</groupId> > <artifactId>aspectjtools</artifactId> > <version>1.6.0</version> > </dependency> > </dependencies> > </plugin> > > 2.0.2 is pretty much done - I'm just working on a "copy-templates" > mojo (for overridding CRUD) and writing up documentation. > Unfortunately, I have a day job and I'm staying across the street from > JavaOne, so it's difficult to free up time to get the release out. > > Matt > > On Tue, May 6, 2008 at 3:54 AM, mschipperheyn <[EMAIL PROTECTED]> > wrote: >> >> Hi, >> >> I've been massaging my project configuration to add support for new >> versions >> of Spring etc for a while now. Now, it seems I have run into a snag >> upgrading to Spring 2.5.4, I get the following error trying to run mvn >> and >> following that, this one from Tomcat withing Eclipse >> >> [WARNING] bad version number found in C:\Documents and >> Settings\marc\.m2\reposit >> ory\org\aspectj\aspectjrt\1.6.0\aspectjrt-1.6.0.jar expected 1.5.4 found >> 1.6.0 > > ----- Dirk de Kok | http://www.d17.nl www.d17.nl -- View this message in context: http://www.nabble.com/AspectJ-1.6-issues%2C-when-is-appfuse-2.02-coming-out--tp17080252s2369p20551549.html Sent from the AppFuse - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
