Skip to content

Commit

Permalink
update for release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Oct 7, 2016
1 parent 28a915b commit c144aec
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
A maven plugin to process annotation for jdk6 at compile time
## A maven plugin to process compile time annotation for jdk6 and above.

This plugin helps to use from maven the new annotation processing provided by JDK6 integrated in java compiler
<a href="http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22maven-processor-plugin%22"><img src="https://img.shields.io/maven-central/v/org.bsc.maven/maven-processor-plugin.svg">
</a>&nbsp;<img src="https://img.shields.io/github/forks/bsorrentino/maven-processor-plugin.svg">&nbsp;
<img src="https://img.shields.io/github/stars/bsorrentino/maven-processor-plugin.svg">&nbsp;<a href="https://github.com/bsorrentino/maven-processor-plugin/issues"><img src="https://img.shields.io/github/issues/bsorrentino/maven-processor-plugin.svg">
</a>&nbsp;

This plugin helps to use from maven the new annotation processing integrated in java compiler provided from JDK6

This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.codehaus.org/apt-maven-plugin/

Expand All @@ -14,6 +19,11 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
| [m2e-annotations](https://github.com/ilx/m2e-annotations) | eclipse plugin |

## Releases ##
|Oct 7,2016 | **Release 3.2.0**. | Available on **[MAVEN CENTRAL REPO](http://search.maven.org/#artifactdetails%7Corg.bsc.maven%7Cmaven-processor-plugin%7C3.2.0%7Cmaven-plugin)** |
|:-----------|:-------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------|

* [Issue 63](https://github.com/bsorrentino/maven-annotation-plugin/issues/63) - -sourcepath is not configured

|Feb 2,2016 | **Release 3.1.0**. | Available on **[MAVEN CENTRAL REPO](http://search.maven.org/#artifactdetails%7Corg.bsc.maven%7Cmaven-processor-plugin%7C3.1.0%7Cmaven-plugin)** |
|:-----------|:-------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------|

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>3.2.0-SNAPSHOT</version>
<version>3.2.0</version>
<name>MAVEN PROCESSOR PLUGIN - ${project.version}</name>
<description>A maven plugin to process annotation for jdk6 at compile time

Expand Down Expand Up @@ -126,8 +126,8 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>

Expand Down

0 comments on commit c144aec

Please sign in to comment.