Skip to content

Commit

Permalink
Issue #166: Fix maven dependencies
Browse files Browse the repository at this point in the history
plexus-compiler-eclipse 2.9.0 depends on plexus-compiler-api 2.9.0
or newer since it makes use of CompilerConfiguration.getWarnings().

Declare the dependency to match the API the plug-in is actually built
against, ensuring that maven-compiler-plugin will also pull in the
correct API version when people use plexus-compiler-eclipse.
  • Loading branch information
tomaswolf authored and slachiewicz committed Nov 21, 2021
1 parent 28ba022 commit 9dff918
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plexus-compilers/plexus-compiler-eclipse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
<description>Eclipse Compiler support for Plexus Compiler component.</description>

<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-api</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
Expand Down

0 comments on commit 9dff918

Please sign in to comment.