Skip to content

Commit 98280b9

Browse files
author
Yoshito Umaoka
committed
Using fixed versions in examples
Maven release plug-in does not look maven project not included in parent <module> element. However, we don’t want to include maven project under examples as sub modules to be deployed to OSSRH staging. I think there might be a way to skip specific module during deployment. For now, I update these example pom.xml files to use “fixed” versions, so we don’t need to worry about SNAPSHOT dependencies.
1 parent cf8d9f2 commit 98280b9

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

examples/custom-res-filter/csv-filter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.ibm.g11n.pipeline</groupId>
55
<artifactId>csv-filter</artifactId>
6-
<version>1.2.0-SNAPSHOT</version>
6+
<version>1.0.0</version>
77
<name>Custom resource filter example - CSV filter</name>
88

99
<properties>
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>com.ibm.g11n.pipeline</groupId>
2323
<artifactId>gp-res-filter</artifactId>
24-
<version>1.2.0-SNAPSHOT</version>
24+
<version>1.2.0</version>
2525
</dependency>
2626
<!-- JUnit -->
2727
<dependency>

examples/custom-res-filter/maven/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.ibm.g11n.pipeline</groupId>
55
<artifactId>custom-res-filter-maven</artifactId>
6-
<version>1.2.0-SNAPSHOT</version>
6+
<version>1.0.0</version>
77
<name>Custom resource filter usage example</name>
88

99
<build>
1010
<plugins>
1111
<plugin>
1212
<groupId>com.ibm.g11n.pipeline</groupId>
1313
<artifactId>gp-maven-plugin</artifactId>
14-
<version>1.2.0-SNAPSHOT</version>
14+
<version>1.2.0</version>
1515
<dependencies>
1616
<dependency>
1717
<groupId>com.ibm.g11n.pipeline</groupId>
1818
<artifactId>csv-filter</artifactId>
19-
<version>1.2.0-SNAPSHOT</version>
19+
<version>1.0.0</version>
2020
</dependency>
2121
</dependencies>
2222
<configuration>

0 commit comments

Comments
 (0)