-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Automatic-Module-Name to published jars. Context: https://b.cor…
- Loading branch information
1 parent
918b67c
commit 8e85fad
Showing
5 changed files
with
94 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<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"> | ||
<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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.googlecode.libphonenumber</groupId> | ||
<artifactId>libphonenumber-parent</artifactId> | ||
|
@@ -14,7 +16,8 @@ | |
</parent> | ||
|
||
<description> | ||
Google's common Java library for parsing, formatting, storing and validating international phone numbers. | ||
Google's common Java library for parsing, formatting, storing and validating | ||
international phone numbers. | ||
Optimized for running on smartphones. | ||
</description> | ||
|
||
|
@@ -31,8 +34,10 @@ | |
</licenses> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/google/libphonenumber.git</connection> | ||
<developerConnection>scm:git:[email protected]:googlei18n/libphonenumber.git</developerConnection> | ||
<connection>scm:git:https://github.com/google/libphonenumber.git | ||
</connection> | ||
<developerConnection>scm:git:[email protected]:googlei18n/libphonenumber.git | ||
</developerConnection> | ||
<url>https://github.com/google/libphonenumber/</url> | ||
<tag>v8.13.51</tag> | ||
</scm> | ||
|
@@ -108,6 +113,10 @@ | |
<artifactId>animal-sniffer-maven-plugin</artifactId> | ||
<version>1.15</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.3.0</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
|
@@ -162,20 +171,20 @@ | |
<version>3.11.0</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
<encoding>UTF-8</encoding> | ||
<target>1.7</target> | ||
<encoding>UTF-8</encoding> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.13</version> | ||
<version>1.6.13</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>sonatype-nexus-staging</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<stagingProfileId>23ed8fbc71e875</stagingProfileId> | ||
<skipStagingRepositoryClose>true</skipStagingRepositoryClose> | ||
<skipStagingRepositoryClose>true</skipStagingRepositoryClose> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
|