Skip to content

Commit

Permalink
Use jgitver to manage versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jchambers committed Jul 6, 2024
1 parent 501498c commit be6b36d
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .mvn/extensions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd">
<extension>
<groupId>fr.brouillard.oss</groupId>
<artifactId>jgitver-maven-plugin</artifactId>
<version>1.9.0</version>
</extension>
</extensions>
8 changes: 8 additions & 0 deletions .mvn/jgitver.config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<configuration xmlns="http://jgitver.github.io/maven/configuration/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://jgitver.github.io/maven/configuration/1.1.0 https://jgitver.github.io/maven/configuration/jgitver-configuration-v1_1_0.xsd">

<useDirty>true</useDirty>
<nonQualifierBranches>main</nonQualifierBranches>
<regexVersionTag>pushy-(.+)</regexVersionTag>
</configuration>
2 changes: 1 addition & 1 deletion benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<parent>
<artifactId>pushy-parent</artifactId>
<groupId>com.eatthepath</groupId>
<version>0.15.5-SNAPSHOT</version>
<version>JGITVER</version>
</parent>

<artifactId>pushy-benchmark</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion dropwizard-metrics-listener/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>com.eatthepath</groupId>
<artifactId>pushy-parent</artifactId>
<version>0.15.5-SNAPSHOT</version>
<version>JGITVER</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion gson-payload-builder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<parent>
<artifactId>pushy-parent</artifactId>
<groupId>com.eatthepath</groupId>
<version>0.15.5-SNAPSHOT</version>
<version>JGITVER</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion jackson-payload-builder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<parent>
<artifactId>pushy-parent</artifactId>
<groupId>com.eatthepath</groupId>
<version>0.15.5-SNAPSHOT</version>
<version>JGITVER</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion micrometer-metrics-listener/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<artifactId>pushy-parent</artifactId>
<groupId>com.eatthepath</groupId>
<version>0.15.5-SNAPSHOT</version>
<version>JGITVER</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<groupId>com.eatthepath</groupId>
<artifactId>pushy-parent</artifactId>
<packaging>pom</packaging>
<version>0.15.5-SNAPSHOT</version>
<version>JGITVER</version>

<name>Pushy parent</name>
<description>A Java library for sending APNs (iOS/macOS/Safari) push notifications</description>
Expand Down
2 changes: 1 addition & 1 deletion pushy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>com.eatthepath</groupId>
<artifactId>pushy-parent</artifactId>
<version>0.15.5-SNAPSHOT</version>
<version>JGITVER</version>
</parent>

<dependencies>
Expand Down

0 comments on commit be6b36d

Please sign in to comment.