Advertisement
Guest User

Untitled

a guest
Jan 28th, 2017
792
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.65 KB | None | 0 0
  1.             <plugin>
  2.                 <groupId>org.codehaus.mojo</groupId>
  3.                 <artifactId>aspectj-maven-plugin</artifactId>
  4.                 <version>1.8</version>
  5.                 <dependencies>
  6.                     <dependency>
  7.                         <groupId>org.aspectj</groupId>
  8.                         <artifactId>aspectjrt</artifactId>
  9.                         <version>1.8.7</version>
  10.                     </dependency>
  11.                     <dependency>
  12.                         <groupId>org.aspectj</groupId>
  13.                         <artifactId>aspectjtools</artifactId>
  14.                         <version>1.8.7</version>
  15.                     </dependency>
  16.                 </dependencies>
  17.                 <executions>
  18.                     <execution>
  19.                         <phase>process-classes</phase>
  20.                         <goals>
  21.                             <goal>compile</goal>
  22.                             <goal>test-compile</goal>
  23.                         </goals>
  24.                     </execution>
  25.                 </executions>
  26.                 <configuration>
  27.                     <showWeaveInfo/>
  28.                     <forceAjcCompile>true</forceAjcCompile>
  29.                     <sources/>
  30.                     <weaveDirectories>
  31.                         <weaveDirectory>${project.build.directory}/classes</weaveDirectory>
  32.                     </weaveDirectories>
  33.                     <aspectLibraries>
  34.                     </aspectLibraries>
  35.                     <complianceLevel>1.8</complianceLevel>
  36.                     <source>1.8</source>
  37.                     <target>1.8</target>
  38.                 </configuration>
  39.             </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement