Skip to content

Commit e8821c2

Browse files
authored
Make library versioning more flexible (#806)
There is a possibility with maven to inject the version number into the build (see https://maven.apache.org/maven-ci-friendly.html). This will allow us to publish regular releases without permanent PRs for version updates.
1 parent 79bc304 commit e8821c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<modelVersion>4.0.0</modelVersion>
1313
<groupId>com.sap.cp.jenkins</groupId>
1414
<artifactId>jenkins-library</artifactId>
15-
<version>0.11</version>
15+
<version>${revision}</version>
1616

1717
<name>SAP CP Piper Library</name>
1818
<description>Shared library containing steps and utilities to set up continuous deployment processes for SAP technologies.</description>
@@ -40,14 +40,14 @@
4040
</pluginRepositories>
4141

4242
<properties>
43+
<revision>0-SNAPSHOT</revision>
4344
<findbugs.skip>true</findbugs.skip>
4445
<jenkins.version>2.32.3</jenkins.version>
4546
<pipeline.version>2.5</pipeline.version>
4647
<cps.global.lib.version>2.6</cps.global.lib.version>
4748
<java.level>8</java.level>
4849
</properties>
4950

50-
5151
<dependencies>
5252

5353
<dependency>

0 commit comments

Comments
 (0)