Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartolomeo Sorrentino authored and Bartolomeo Sorrentino committed Apr 22, 2019
2 parents d6c56eb + b7434e5 commit ea9f4ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)** |
----|----|----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down Expand Up @@ -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<String> moduleNames) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

@Override
public Boolean call() {
try {
Expand Down Expand Up @@ -457,6 +462,7 @@ public String toString() {
});
return false;
}

}
};
}
Expand Down

0 comments on commit ea9f4ed

Please sign in to comment.