Skip to content

Commit

Permalink
Fix build by removing LTW configuration
Browse files Browse the repository at this point in the history
The build already uses compile-time weaving. There is no point in also
adding load-time weaving to the mix.
  • Loading branch information
kriegaex committed Jun 16, 2018
1 parent 8aa7b98 commit 72f37c4
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions pom.xml
Expand Up @@ -89,12 +89,6 @@
<version>${aspectj.version}</version> <version>${aspectj.version}</version>
</dependency> </dependency>


<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectj.version}</version>
</dependency>

<!--<dependency> <!--<dependency>
<groupId>MyTraining</groupId> <groupId>MyTraining</groupId>
<artifactId>project</artifactId> <artifactId>project</artifactId>
Expand Down Expand Up @@ -156,23 +150,13 @@
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version> <version>2.20</version>
<configuration> <configuration>
<argLine>
-javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
</argLine>
<systemProperties> <systemProperties>
<property> <property>
<name>allure.results.directory</name> <name>allure.results.directory</name>
<value>${project.basedir}/target/allure-results </value> <value>${project.basedir}/target/allure-results </value>
</property> </property>
</systemProperties> </systemProperties>
</configuration> </configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
</plugin> </plugin>


<plugin> <plugin>
Expand Down

0 comments on commit 72f37c4

Please sign in to comment.