Browse Source

update pom project name

pull/3884/head
Mandli Lakshmi 5 months ago
parent
commit
09d9925084
6 changed files with 28 additions and 30 deletions
  1. +1
    -0
      java/carrier/pom.xml
  2. +1
    -0
      java/demo/pom.xml
  3. +1
    -0
      java/geocoder/pom.xml
  4. +1
    -0
      java/internal/prefixmapper/pom.xml
  5. +1
    -0
      java/libphonenumber/pom.xml
  6. +23
    -30
      java/pom.xml

+ 1
- 0
java/carrier/pom.xml View File

@ -4,6 +4,7 @@
<artifactId>carrier</artifactId>
<version>2.9-SNAPSHOT</version>
<packaging>jar</packaging>
<name>carrier</name>
<url>https://github.com/google/libphonenumber/</url>
<parent>


+ 1
- 0
java/demo/pom.xml View File

@ -5,6 +5,7 @@
<artifactId>demo</artifactId>
<version>9.0.9-SNAPSHOT</version>
<packaging>war</packaging>
<name>demo</name>
<url>https://github.com/google/libphonenumber/</url>
<parent>
<groupId>com.googlecode.libphonenumber</groupId>


+ 1
- 0
java/geocoder/pom.xml View File

@ -4,6 +4,7 @@
<artifactId>geocoder</artifactId>
<version>3.9-SNAPSHOT</version>
<packaging>jar</packaging>
<name>geocoder</name>
<url>https://github.com/google/libphonenumber/</url>
<parent>


+ 1
- 0
java/internal/prefixmapper/pom.xml View File

@ -4,6 +4,7 @@
<artifactId>prefixmapper</artifactId>
<version>3.9-SNAPSHOT</version>
<packaging>jar</packaging>
<name>prefixmapper</name>
<url>https://github.com/google/libphonenumber/</url>
<parent>


+ 1
- 0
java/libphonenumber/pom.xml View File

@ -4,6 +4,7 @@
<artifactId>libphonenumber</artifactId>
<version>9.0.9-SNAPSHOT</version>
<packaging>jar</packaging>
<name>libphonenumber</name>
<url>https://github.com/google/libphonenumber/</url>
<parent>


+ 23
- 30
java/pom.xml View File

@ -5,6 +5,7 @@
<artifactId>libphonenumber-parent</artifactId>
<version>9.0.9-SNAPSHOT</version>
<packaging>pom</packaging>
<name>libphonenumber-parent</name>
<url>https://github.com/google/libphonenumber/</url>
<description>
@ -166,6 +167,28 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--batch</arg>
<arg>--yes</arg>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
@ -178,36 +201,6 @@
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- Until 08. Dec 2016, this pom worked with maven-release-plugin at 2.2.1
and default SCM dependencies. On 11. Jan, 2017 that was no longer the
case, presumably because the default SCM version changed (cannot find


Loading…
Cancel
Save