Skip to content

Commit

Permalink
Update pom.xml for first release to Maven central.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrozanec committed Aug 28, 2014
1 parent a37b393 commit eb81756
Showing 1 changed file with 27 additions and 21 deletions.
48 changes: 27 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

<groupId>com.cronutils</groupId>
<artifactId>cron-utils</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>

<name>cron-utils</name>
<description>A Java library to parse cron expressions and describe them in human readable language</description>
<description>A Java library to parse, migrate validate crons as well as describe them in human readable language</description>
<url>http://cron-parser.com/</url>

<licenses>
Expand Down Expand Up @@ -197,30 +197,36 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<projectNameTemplate>[artifactId]</projectNameTemplate>
<wtpversion>2.0</wtpversion>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<releaseProfiles>release-sign-artifacts</releaseProfiles>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.2</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
Expand Down

0 comments on commit eb81756

Please sign in to comment.