Skip to content

Commit be6b36d

Browse files
committed
Use jgitver to manage versions
1 parent 501498c commit be6b36d

File tree

9 files changed

+23
-7
lines changed

9 files changed

+23
-7
lines changed

.mvn/extensions.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd">
3+
<extension>
4+
<groupId>fr.brouillard.oss</groupId>
5+
<artifactId>jgitver-maven-plugin</artifactId>
6+
<version>1.9.0</version>
7+
</extension>
8+
</extensions>

.mvn/jgitver.config.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<configuration xmlns="http://jgitver.github.io/maven/configuration/1.1.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://jgitver.github.io/maven/configuration/1.1.0 https://jgitver.github.io/maven/configuration/jgitver-configuration-v1_1_0.xsd">
4+
5+
<useDirty>true</useDirty>
6+
<nonQualifierBranches>main</nonQualifierBranches>
7+
<regexVersionTag>pushy-(.+)</regexVersionTag>
8+
</configuration>

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<artifactId>pushy-parent</artifactId>
2929
<groupId>com.eatthepath</groupId>
30-
<version>0.15.5-SNAPSHOT</version>
30+
<version>JGITVER</version>
3131
</parent>
3232

3333
<artifactId>pushy-benchmark</artifactId>

dropwizard-metrics-listener/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<parent>
3232
<groupId>com.eatthepath</groupId>
3333
<artifactId>pushy-parent</artifactId>
34-
<version>0.15.5-SNAPSHOT</version>
34+
<version>JGITVER</version>
3535
</parent>
3636

3737
<dependencies>

gson-payload-builder/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<parent>
3333
<artifactId>pushy-parent</artifactId>
3434
<groupId>com.eatthepath</groupId>
35-
<version>0.15.5-SNAPSHOT</version>
35+
<version>JGITVER</version>
3636
</parent>
3737

3838
<dependencies>

jackson-payload-builder/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<parent>
3333
<artifactId>pushy-parent</artifactId>
3434
<groupId>com.eatthepath</groupId>
35-
<version>0.15.5-SNAPSHOT</version>
35+
<version>JGITVER</version>
3636
</parent>
3737

3838
<dependencies>

micrometer-metrics-listener/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<parent>
3232
<artifactId>pushy-parent</artifactId>
3333
<groupId>com.eatthepath</groupId>
34-
<version>0.15.5-SNAPSHOT</version>
34+
<version>JGITVER</version>
3535
</parent>
3636

3737
<dependencies>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<groupId>com.eatthepath</groupId>
2828
<artifactId>pushy-parent</artifactId>
2929
<packaging>pom</packaging>
30-
<version>0.15.5-SNAPSHOT</version>
30+
<version>JGITVER</version>
3131

3232
<name>Pushy parent</name>
3333
<description>A Java library for sending APNs (iOS/macOS/Safari) push notifications</description>

pushy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<parent>
3232
<groupId>com.eatthepath</groupId>
3333
<artifactId>pushy-parent</artifactId>
34-
<version>0.15.5-SNAPSHOT</version>
34+
<version>JGITVER</version>
3535
</parent>
3636

3737
<dependencies>

0 commit comments

Comments
 (0)