diff --git a/README.md b/README.md index 37cc20c..3ca2cff 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,9 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo. ## Releases +Currently | **Release 3.3.3-SNAPSHOT** | available from **[MAVEN CENTRAL REPO](https://oss.sonatype.org/content/repositories/snapshots/org/bsc/maven/maven-processor-plugin/3.3.3-SNAPSHOT/)** | +---- | ---- | ---- + Aug 12,2018 | **Release 3.3.3**. | Available on **[MAVEN CENTRAL REPO](http://search.maven.org/#artifactdetails%7Corg.bsc.maven%7Cmaven-processor-plugin%7C3.3.3%7Cmaven-plugin)** | ----|----|---- diff --git a/src/main/java/org/bsc/maven/plugin/processor/AnnotationProcessorCompiler.java b/src/main/java/org/bsc/maven/plugin/processor/AnnotationProcessorCompiler.java index dba6841..3174948 100644 --- a/src/main/java/org/bsc/maven/plugin/processor/AnnotationProcessorCompiler.java +++ b/src/main/java/org/bsc/maven/plugin/processor/AnnotationProcessorCompiler.java @@ -266,7 +266,7 @@ public static JavaCompiler createInProcess() { return ToolProvider.getSystemJavaCompiler(); } - private static void printCommand( final org.codehaus.plexus.compiler.Compiler javac, + static void printCommand( final org.codehaus.plexus.compiler.Compiler javac, final CompilerConfiguration javacConf, final java.io.PrintWriter out ) throws CompilerException { @@ -412,6 +412,11 @@ public void setLocale(Locale locale) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } + @Override + public void addModules(Iterable moduleNames) { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + @Override public Boolean call() { try { @@ -457,6 +462,7 @@ public String toString() { }); return false; } + } }; }