summaryrefslogtreecommitdiffstats
path: root/java/pom.xml
diff options
context:
space:
mode:
authorphilip.liard@gmail.com <philip.liard@gmail.com@ee073f10-1060-11df-b6a4-87a95322a99c>2011-11-21 10:45:37 +0000
committerphilip.liard@gmail.com <philip.liard@gmail.com@ee073f10-1060-11df-b6a4-87a95322a99c>2011-11-21 10:45:37 +0000
commit94a488d48eacf4fc53ec575db0f1bb11112073cf (patch)
tree4de2f4c5bb1967f2f29310a02b595d360a4d2252 /java/pom.xml
parentb2198d449bdb7c609ef96c5ce5c68be6b2815c92 (diff)
downloadandroid_external_libphonenumbergoogle-94a488d48eacf4fc53ec575db0f1bb11112073cf.tar.gz
android_external_libphonenumbergoogle-94a488d48eacf4fc53ec575db0f1bb11112073cf.tar.bz2
android_external_libphonenumbergoogle-94a488d48eacf4fc53ec575db0f1bb11112073cf.zip
JAVA: Move java code to java/libphonenumber.
This is required for the incoming Maven refactoring adding a separate geocoder module. BUG=57 Review URL: http://codereview.appspot.com/5376090 git-svn-id: http://libphonenumber.googlecode.com/svn/trunk@390 ee073f10-1060-11df-b6a4-87a95322a99c
Diffstat (limited to 'java/pom.xml')
-rw-r--r--java/pom.xml292
1 files changed, 0 insertions, 292 deletions
diff --git a/java/pom.xml b/java/pom.xml
deleted file mode 100644
index 32cdd14..0000000
--- a/java/pom.xml
+++ /dev/null
@@ -1,292 +0,0 @@
-<?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.googlecode.libphonenumber</groupId>
- <artifactId>libphonenumber</artifactId>
- <version>4.3-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>libphonenumber</name>
- <url>http://code.google.com/p/libphonenumber/</url>
-
- <parent>
- <groupId>org.sonatype.oss</groupId>
- <artifactId>oss-parent</artifactId>
- <version>7</version>
- </parent>
-
- <description>
- Google's common Java library for parsing, formatting, storing and validating international phone numbers.
- Optimized for running on smartphones.
- </description>
-
- <organization>
- <name>Google</name>
- <url>http://www.google.com/</url>
- </organization>
-
- <licenses>
- <license>
- <name>The Apache Software License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- </license>
- </licenses>
-
- <scm>
- <connection>scm:svn:http://libphonenumber.googlecode.com/svn/trunk/java/</connection>
- <developerConnection>scm:svn:https://libphonenumber.googlecode.com/svn/trunk/java/</developerConnection>
- <url>scm:svn:http://libphonenumber.googlecode.com/svn/trunk/java/</url>
- </scm>
-
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
-
- <developers>
- <developer>
- <id>jia.shao.peng</id>
- <name>Shaopeng Jia</name>
- <email>jia.shao.peng@gmail.com</email>
- <organization>Google</organization>
- <roles>
- <role>owner</role>
- <role>developer</role>
- </roles>
- </developer>
- <developer>
- <id>lararennie</id>
- <name>Lara Rennie</name>
- <email>lararennie@google.com</email>
- <organization>Google</organization>
- <roles>
- <role>developer</role>
- </roles>
- </developer>
- </developers>
-
- <contributors>
- <contributor>
- <name>tronikos</name>
- <email>tronikos@gmail.com</email>
- </contributor>
- <contributor>
- <name>g1smd.email</name>
- <email>g1smd.email@gmail.com</email>
- </contributor>
- <contributor>
- <name>Philippe Liard</name>
- <email>philip.liard@gmail.com</email>
- </contributor>
- </contributors>
-
- <build>
- <sourceDirectory>src</sourceDirectory>
- <testSourceDirectory>test</testSourceDirectory>
- <resources>
- <resource>
- <directory>src/com/google/i18n/phonenumbers/data</directory>
- <targetPath>com/google/i18n/phonenumbers/data</targetPath>
- </resource>
- </resources>
- <testResources>
- <testResource>
- <directory>test/com/google/i18n/phonenumbers/data</directory>
- <targetPath>com/google/i18n/phonenumbers/data</targetPath>
- </testResource>
- <testResource>
- <directory>test/com/google/i18n/phonenumbers/geocoding/testing_data</directory>
- <targetPath>com/google/i18n/phonenumbers/geocoding/testing_data</targetPath>
- </testResource>
- </testResources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.3.1</version>
- <configuration>
- <excludes>
- <exclude>**/geocoding/</exclude>
- </excludes>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.10</version>
- <configuration>
- <forkMode>never</forkMode>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.1.2</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.0-beta-7</version>
- <configuration>
- <tagBase>
- https://libphonenumber.googlecode.com/svn/tags/
- </tagBase>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </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>1.1</version>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <!-- Development profile that triggers the metadata generation. -->
- <profile>
- <id>dev</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>1.2</version>
- <executions>
- <execution>
- <id>build-metadata</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <executable>java</executable>
- <arguments>
- <argument>-jar</argument>
- <argument>../tools/java/java-build/target/java-build-1.0-SNAPSHOT-jar-with-dependencies.jar</argument>
- <argument>BuildMetadataProtoFromXml</argument>
- <argument>../resources/PhoneNumberMetaData.xml</argument>
- <argument>src</argument>
- <argument>false</argument> <!-- Not for testing. -->
- <argument>false</argument> <!-- No lite metadata. -->
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>build-test-metadata</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <executable>java</executable>
- <arguments>
- <argument>-jar</argument>
- <argument>../tools/java/java-build/target/java-build-1.0-SNAPSHOT-jar-with-dependencies.jar</argument>
- <argument>BuildMetadataProtoFromXml</argument>
- <argument>../resources/PhoneNumberMetaDataForTesting.xml</argument>
- <argument>test</argument>
- <argument>true</argument> <!-- For testing. -->
- <argument>false</argument> <!-- No lite metadata. -->
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>build-geo-data</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <executable>java</executable>
- <arguments>
- <argument>-jar</argument>
- <argument>../tools/java/java-build/target/java-build-1.0-SNAPSHOT-jar-with-dependencies.jar</argument>
- <argument>GenerateAreaCodeData</argument>
- <argument>../resources/geocoding</argument>
- <argument>src/com/google/i18n/phonenumbers/geocoding/data</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>build-geo-test-data</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <executable>java</executable>
- <arguments>
- <argument>-jar</argument>
- <argument>../tools/java/java-build/target/java-build-1.0-SNAPSHOT-jar-with-dependencies.jar</argument>
- <argument>GenerateAreaCodeData</argument>
- <argument>../resources/test/geocoding</argument>
- <argument>test/com/google/i18n/phonenumbers/geocoding/testing_data</argument>
- </arguments>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
-</project>