1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 5 <modelVersion>4.0.0</modelVersion> 6 <groupId>com.google</groupId> 7 <artifactId>google</artifactId> 8 <version>1</version> 9 <name>Google</name> 10 <description>Internally developed code released as open source.</description> 11 <packaging>pom</packaging> 12 <organization> 13 <name>Google</name> 14 <url>http://www.google.com/</url> 15 </organization> 16 <url>http://code.google.com/hosting/projects.html</url> 17 <licenses> 18 <license> 19 <name>The Apache Software License, Version 2.0</name> 20 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 21 <distribution>repo</distribution> 22 </license> 23 </licenses> 24 <distributionManagement> 25 <repository> 26 <id>google-maven-repository</id> 27 <name>Google Maven Repository</name> 28 <url>dav:https://google-maven-repository.googlecode.com/svn/repository/</url> 29 </repository> 30 <snapshotRepository> 31 <id>google-maven-snapshot-repository</id> 32 <name>Google Maven Snapshot Repository</name> 33 <url>dav:https://google-maven-repository.googlecode.com/svn/snapshot-repository/</url> 34 <uniqueVersion>true</uniqueVersion> 35 </snapshotRepository> 36 </distributionManagement> 37 </project> 38