Skip to content

Commit

Permalink
update pom for next major release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartolomeo Sorrentino authored and Bartolomeo Sorrentino committed Apr 23, 2019
1 parent ea9f4ed commit 0f00f58
Showing 1 changed file with 33 additions and 20 deletions.
53 changes: 33 additions & 20 deletions utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.bsc.util</groupId>
<artifactId>processor-utils</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>2.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>JAVA PROCESSOR UTILS - ${project.version}</name>
Expand All @@ -13,15 +13,14 @@
</properties>

<scm>
<connection>scm:git:https://[email protected]/p/maven-annotation-plugin.utils/ </connection>
<developerConnection>scm:git:https://[email protected]/p/maven-annotation-plugin.utils/ </developerConnection>
<url>https://[email protected]/p/maven-annotation-plugin.utils/ </url>
<tag>HEAD</tag>
<connection>scm:git:https://github.com/bsorrentino/maven-annotation-plugin.git </connection>
<developerConnection>scm:git:https://github.com/bsorrentino/maven-annotation-plugin.git</developerConnection>
<url>https://github.com/bsorrentino/maven-annotation-plugin/tree/master/utils</url>
</scm>

<inceptionYear>2013</inceptionYear>
<description>Utilities for java annotation processor implementation JSR-269</description>
<url>https://code.google.com/p/maven-annotation-plugin/</url>
<url>https://github.com/bsorrentino/maven-annotation-plugin/tree/master/utils</url>

<licenses>
<license>
Expand All @@ -46,7 +45,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -60,10 +59,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<version>3.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

Expand All @@ -90,16 +89,16 @@
<id>sonatype</id>
<build>
<plugins>
<!--
=====================================================================
mvn -Prelease release:perform -Darguments=-Dgpg.passphrase=thephrase
=====================================================================
<!--
====================================================================================
# https://github.com/keybase/keybase-issues/issues/2798
export GPG_TTY=$(tty)
mvn -Prelease source:jar javadoc:jar deploy -Dgpg.passphrase=thephrase
====================================================================================
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.3</version>

<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -109,10 +108,24 @@
</goals>
</execution>
</executions>

<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</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>
</profile>
Expand Down

0 comments on commit 0f00f58

Please sign in to comment.