Skip to content

Commit

Permalink
Bump version up to 1.3.1-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed May 31, 2023
1 parent 1fd7758 commit c9da041
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions HOWTORELEASE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,25 @@ General Notes
<profiles/>
<activeProfiles/>
</settings>
- selected signing key i.e. in the each module pom.xml via the gpg configuration tags:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>KEYID</keyname>
<passphrase>passphrase</passphrase>
</configuration>
</execution>
</executions>
</plugin>

Cheat sheet:
- All commands are can be described via the following template:
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.locationtech.proj4j</groupId>
<artifactId>proj4j</artifactId>
<version>1.3.0</version>
<version>1.3.1-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>Proj4J</name>
<url>https://github.com/locationtech/proj4j</url>
Expand Down
2 changes: 1 addition & 1 deletion epsg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.locationtech.proj4j</groupId>
<artifactId>proj4j-epsg</artifactId>
<version>1.3.0</version>
<version>1.3.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Proj4J EPSG</name>
<url>https://github.com/locationtech/proj4j</url>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Alternatively, it could be set to <version>${revision}</version> and overrided at start `mvn -Drevision=1.1.4-SNAPSHOT install`
jgitver plugin always overrides the version set here. -->
<version>1.3.0</version>
<version>1.3.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Proj4J Root</name>
<url>https://github.com/locationtech/proj4j</url>
Expand Down

0 comments on commit c9da041

Please sign in to comment.