Skip to content

Commit

Permalink
Fixes #29 Latest version of Aspectj (1.8.10) is not supported (#34)
Browse files Browse the repository at this point in the history
* Fixes #29 Latest version of Aspectj (1.8.10) is not supported

* Fixes #29 Latest version of Aspectj (1.8.10) is not supported (removed oraclejdk7 from Travis configuration)

* Fixes #29 Configured maven-plugin-plugin report to only build a report for aspectj-maven-plugin artifact
  • Loading branch information
dheid authored and davidkarlsen committed Jan 8, 2018
1 parent 6e3585d commit 4aa3d23
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: java
jdk:
- oraclejdk7
- oraclejdk8
addons:
apt:
Expand Down
17 changes: 14 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
</description>
<inceptionYear>2005</inceptionYear>
<properties>
<aspectjVersion>1.8.9</aspectjVersion>
<aspectjVersion>1.8.13</aspectjVersion>
<mavenVersion>3.0.5</mavenVersion>
<doxiaVersion>1.6</doxiaVersion>
<mojo.java.target>1.7</mojo.java.target> <!-- aspectJ 1.8.7 is JDK 1.7 minimum -->
<mojo.java.target>1.8</mojo.java.target> <!-- aspectJ 1.8.13 is JDK 1.8 minimum -->
<!-- work around until it is correctly fixed at top parent -->
<scmpublish.content>${project.build.directory}/staging/aspectj-maven-plugin</scmpublish.content>
</properties>
Expand Down Expand Up @@ -201,7 +201,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<!-- use parent's configuration -->
<version>3.5</version>
<configuration>
<mojoDependencies>org.codehaus.mojo:aspectj-maven-plugin</mojoDependencies>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -307,6 +310,14 @@

<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.5</version>
<configuration>
<mojoDependencies>org.codehaus.mojo:aspectj-maven-plugin</mojoDependencies>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>l10n-maven-plugin</artifactId>
Expand Down

0 comments on commit 4aa3d23

Please sign in to comment.