Skip to content

Commit

Permalink
Merge branch 'release/3.1.0' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Feb 2, 2016
2 parents 3fa7494 + b0f2f4f commit 7f6fe24
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ 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 ##
|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)** |
|:-----------|:-------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------|

* [pull request #61](https://github.com/bsorrentino/maven-annotation-plugin/pull/61) fixing [issue #59](https://github.com/bsorrentino/maven-annotation-plugin/issues/59) - Add skip property

> Thanks to [borisbrodski](https://github.com/borisbrodski) for contribution
|Jun 28,2014 | **Release 3.1.0-beta1**. | Available on **[MAVEN CENTRAL REPO](http://search.maven.org/#artifactdetails%7Corg.bsc.maven%7Cmaven-processor-plugin%7C3.1.0-beta1%7Cmaven-plugin)** |
|:-----------|:-------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------|

Expand Down
15 changes: 13 additions & 2 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.1.0-SNAPSHOT</version>
<version>3.1.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 @@ -233,6 +233,17 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.

</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.5.1</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-server</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<stagingProfileId />
</configuration>
</plugin>

</plugins>
</build>
Expand All @@ -255,7 +266,7 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<configuration>
<message>Creating site for ${project.version}</message>
<server>github</server>
<repositoryName>maven-processor-plugin</repositoryName>
<repositoryName>maven-annotation-plugin</repositoryName>
<repositoryOwner>bsorrentino</repositoryOwner>
</configuration>
<executions>
Expand Down

0 comments on commit 7f6fe24

Please sign in to comment.