Skip to content

Commit 5f2d324

Browse files
committed
Issue codehaus-plexus#166: Fix maven dependencies
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.
1 parent f410363 commit 5f2d324

File tree

1 file changed

+4
-0
lines changed
  • plexus-compilers/plexus-compiler-eclipse

1 file changed

+4
-0
lines changed

plexus-compilers/plexus-compiler-eclipse/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
<description>Eclipse Compiler support for Plexus Compiler component.</description>
1515

1616
<dependencies>
17+
<dependency>
18+
<groupId>org.codehaus.plexus</groupId>
19+
<artifactId>plexus-compiler-api</artifactId>
20+
</dependency>
1721
<dependency>
1822
<groupId>org.codehaus.plexus</groupId>
1923
<artifactId>plexus-utils</artifactId>

0 commit comments

Comments
 (0)