1<?xml version="1.0" encoding="UTF-8"?> 2<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/maven-v4_0_0.xsd"> 3 <modelVersion>4.0.0</modelVersion> 4 <groupId>com.google.i18n.phonenumbers</groupId> 5 <artifactId>tools</artifactId> 6 <packaging>pom</packaging> 7 <version>1.0-SNAPSHOT</version> 8 <name>Libphonenumber build tools</name> 9 10 <properties> 11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 12 </properties> 13 14 <licenses> 15 <license> 16 <name>Apache 2</name> 17 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 18 <comments>Copyright (C) 2011 The Libphonenumber Authors</comments> 19 </license> 20 </licenses> 21 22 <profiles> 23 <profile> 24 <id>default</id> 25 <activation> 26 <activeByDefault>true</activeByDefault> 27 </activation> 28 <modules> 29 <module>common</module> 30 <module>cpp-build</module> 31 <module>data</module> 32 <module>java-build</module> 33 </modules> 34 </profile> 35 <profile> 36 <id>travis</id> 37 <modules> 38 <module>common</module> 39 <!-- TODO: Add cpp-build once the protoc dependency or the generated Phonemetadata.java is 40 hermetic at tools/java/cpp-build/pom.xml. --> 41 <module>data</module> 42 <module>java-build</module> 43 </modules> 44 </profile> 45 </profiles> 46 47</project> 48