Skip to content

Commit 528a831

Browse files
authored
Mandlil maven update (#3884)
* update pom project name * [maven-release-plugin] prepare release v9.0.9 * [maven-release-plugin] prepare for next development iteration * Update java-unit-test.yml Skip GPG Signing
1 parent 3100cfe commit 528a831

File tree

7 files changed

+48
-50
lines changed

7 files changed

+48
-50
lines changed

.github/workflows/java-unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# it's safe to remove the first line entirely.
2929
- name: Test Build Tools with Maven
3030
run: |
31-
mvn install -P github-actions -DskipTests=true -Dmaven.javadoc.skip=true -B -V
31+
mvn install -P github-actions -DskipTests=true -Dgpg.skip=true -Dmaven.javadoc.skip=true -B -V
3232
mvn -P github-actions test
3333
- name: Test Java API with Ant
3434
run: |

java/carrier/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>carrier</artifactId>
5-
<version>2.9-SNAPSHOT</version>
5+
<version>2.10-SNAPSHOT</version>
66
<packaging>jar</packaging>
7+
<name>carrier</name>
78
<url>https://github.com/google/libphonenumber/</url>
89

910
<parent>
1011
<groupId>com.googlecode.libphonenumber</groupId>
1112
<artifactId>libphonenumber-parent</artifactId>
12-
<version>9.0.9-SNAPSHOT</version>
13+
<version>9.0.10-SNAPSHOT</version>
1314
</parent>
1415

1516
<build>
@@ -81,12 +82,12 @@
8182
<dependency>
8283
<groupId>com.googlecode.libphonenumber</groupId>
8384
<artifactId>libphonenumber</artifactId>
84-
<version>9.0.9-SNAPSHOT</version>
85+
<version>9.0.10-SNAPSHOT</version>
8586
</dependency>
8687
<dependency>
8788
<groupId>com.googlecode.libphonenumber</groupId>
8889
<artifactId>prefixmapper</artifactId>
89-
<version>3.9-SNAPSHOT</version>
90+
<version>3.10-SNAPSHOT</version>
9091
</dependency>
9192
</dependencies>
9293

java/demo/pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.googlecode.libphonenumber</groupId>
55
<artifactId>demo</artifactId>
6-
<version>9.0.9-SNAPSHOT</version>
6+
<version>9.0.10-SNAPSHOT</version>
77
<packaging>war</packaging>
8+
<name>demo</name>
89
<url>https://github.com/google/libphonenumber/</url>
910
<parent>
1011
<groupId>com.googlecode.libphonenumber</groupId>
1112
<artifactId>libphonenumber-parent</artifactId>
12-
<version>9.0.9-SNAPSHOT</version>
13+
<version>9.0.10-SNAPSHOT</version>
1314
</parent>
1415

1516
<properties>
@@ -68,17 +69,17 @@
6869
<dependency>
6970
<groupId>com.googlecode.libphonenumber</groupId>
7071
<artifactId>libphonenumber</artifactId>
71-
<version>9.0.9-SNAPSHOT</version>
72+
<version>9.0.10-SNAPSHOT</version>
7273
</dependency>
7374
<dependency>
7475
<groupId>com.googlecode.libphonenumber</groupId>
7576
<artifactId>geocoder</artifactId>
76-
<version>3.9-SNAPSHOT</version>
77+
<version>3.10-SNAPSHOT</version>
7778
</dependency>
7879
<dependency>
7980
<groupId>com.googlecode.libphonenumber</groupId>
8081
<artifactId>carrier</artifactId>
81-
<version>2.9-SNAPSHOT</version>
82+
<version>2.10-SNAPSHOT</version>
8283
</dependency>
8384
</dependencies>
8485

java/geocoder/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>geocoder</artifactId>
5-
<version>3.9-SNAPSHOT</version>
5+
<version>3.10-SNAPSHOT</version>
66
<packaging>jar</packaging>
7+
<name>geocoder</name>
78
<url>https://github.com/google/libphonenumber/</url>
89

910
<parent>
1011
<groupId>com.googlecode.libphonenumber</groupId>
1112
<artifactId>libphonenumber-parent</artifactId>
12-
<version>9.0.9-SNAPSHOT</version>
13+
<version>9.0.10-SNAPSHOT</version>
1314
</parent>
1415

1516
<build>
@@ -91,12 +92,12 @@
9192
<dependency>
9293
<groupId>com.googlecode.libphonenumber</groupId>
9394
<artifactId>libphonenumber</artifactId>
94-
<version>9.0.9-SNAPSHOT</version>
95+
<version>9.0.10-SNAPSHOT</version>
9596
</dependency>
9697
<dependency>
9798
<groupId>com.googlecode.libphonenumber</groupId>
9899
<artifactId>prefixmapper</artifactId>
99-
<version>3.9-SNAPSHOT</version>
100+
<version>3.10-SNAPSHOT</version>
100101
</dependency>
101102
</dependencies>
102103

java/internal/prefixmapper/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>prefixmapper</artifactId>
5-
<version>3.9-SNAPSHOT</version>
5+
<version>3.10-SNAPSHOT</version>
66
<packaging>jar</packaging>
7+
<name>prefixmapper</name>
78
<url>https://github.com/google/libphonenumber/</url>
89

910
<parent>
1011
<groupId>com.googlecode.libphonenumber</groupId>
1112
<artifactId>libphonenumber-parent</artifactId>
12-
<version>9.0.9-SNAPSHOT</version>
13+
<version>9.0.10-SNAPSHOT</version>
1314
<relativePath>../../pom.xml</relativePath>
1415
</parent>
1516

@@ -83,7 +84,7 @@
8384
<dependency>
8485
<groupId>com.googlecode.libphonenumber</groupId>
8586
<artifactId>libphonenumber</artifactId>
86-
<version>9.0.9-SNAPSHOT</version>
87+
<version>9.0.10-SNAPSHOT</version>
8788
</dependency>
8889
</dependencies>
8990

java/libphonenumber/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>libphonenumber</artifactId>
5-
<version>9.0.9-SNAPSHOT</version>
5+
<version>9.0.10-SNAPSHOT</version>
66
<packaging>jar</packaging>
7+
<name>libphonenumber</name>
78
<url>https://github.com/google/libphonenumber/</url>
89

910
<parent>
1011
<groupId>com.googlecode.libphonenumber</groupId>
1112
<artifactId>libphonenumber-parent</artifactId>
12-
<version>9.0.9-SNAPSHOT</version>
13+
<version>9.0.10-SNAPSHOT</version>
1314
</parent>
1415

1516
<build>

java/pom.xml

Lines changed: 24 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.googlecode.libphonenumber</groupId>
55
<artifactId>libphonenumber-parent</artifactId>
6-
<version>9.0.9-SNAPSHOT</version>
6+
<version>9.0.10-SNAPSHOT</version>
77
<packaging>pom</packaging>
8+
<name>libphonenumber-parent</name>
89
<url>https://github.com/google/libphonenumber/</url>
910

1011
<description>
@@ -166,6 +167,28 @@
166167
<encoding>UTF-8</encoding>
167168
</configuration>
168169
</plugin>
170+
<plugin>
171+
<groupId>org.apache.maven.plugins</groupId>
172+
<artifactId>maven-gpg-plugin</artifactId>
173+
<version>3.1.0</version>
174+
<executions>
175+
<execution>
176+
<id>sign-artifacts</id>
177+
<phase>verify</phase>
178+
<goals>
179+
<goal>sign</goal>
180+
</goals>
181+
</execution>
182+
</executions>
183+
<configuration>
184+
<gpgArguments>
185+
<arg>--batch</arg>
186+
<arg>--yes</arg>
187+
<arg>--pinentry-mode</arg>
188+
<arg>loopback</arg>
189+
</gpgArguments>
190+
</configuration>
191+
</plugin>
169192
<plugin>
170193
<groupId>org.sonatype.central</groupId>
171194
<artifactId>central-publishing-maven-plugin</artifactId>
@@ -178,36 +201,6 @@
178201
</plugins>
179202
</build>
180203

181-
<profiles>
182-
<profile>
183-
<id>release-sign-artifacts</id>
184-
<activation>
185-
<property>
186-
<name>performRelease</name>
187-
<value>true</value>
188-
</property>
189-
</activation>
190-
<build>
191-
<plugins>
192-
<plugin>
193-
<groupId>org.apache.maven.plugins</groupId>
194-
<artifactId>maven-gpg-plugin</artifactId>
195-
<version>3.1.0</version>
196-
<executions>
197-
<execution>
198-
<id>sign-artifacts</id>
199-
<phase>verify</phase>
200-
<goals>
201-
<goal>sign</goal>
202-
</goals>
203-
</execution>
204-
</executions>
205-
</plugin>
206-
</plugins>
207-
</build>
208-
</profile>
209-
</profiles>
210-
211204
<!-- Until 08. Dec 2016, this pom worked with maven-release-plugin at 2.2.1
212205
and default SCM dependencies. On 11. Jan, 2017 that was no longer the
213206
case, presumably because the default SCM version changed (cannot find

0 commit comments

Comments
 (0)