<dependencies> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <!--<version>1.6.5</version>--> <version>1.8.2</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>aspectj-maven-plugin</artifactId> <version>1.7</version> <configuration> <complianceLevel>1.7</complianceLevel> <source>1.7</source> <target>1.7</target> </configuration> <executions> <execution> <!--<phase>process-sources</phase>--> <goals> <goal>compile</goal> <goal>test-compile</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
Tuesday, October 14, 2014
Compile aspectj project containing Java 1.7 Source
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment