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 6 <modelVersion>4.0.0</modelVersion> 7 <parent> 8 <groupId>org.sonatype.oss</groupId> 9 <artifactId>oss-parent</artifactId> 10 <version>7</version> 11 </parent> 12 <groupId>com.google.guava</groupId> 13 <artifactId>guava-parent</artifactId> 14 <version>11.0.2</version> 15 <packaging>pom</packaging> 16 <name>Guava Maven Parent</name> 17 <url>http://code.google.com/p/guava-libraries</url> 18 <issueManagement> 19 <system>code.google.com</system> 20 <url>http://code.google.com/p/guava-libraries/issues</url> 21 </issueManagement> 22 <inceptionYear>2010</inceptionYear> 23 <licenses> 24 <license> 25 <name>The Apache Software License, Version 2.0</name> 26 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 27 <distribution>repo</distribution> 28 </license> 29 </licenses> 30 <prerequisites> 31 <maven>2.0.9</maven> 32 </prerequisites> 33 <scm> 34 <connection>scm:git:https://code.google.com/p/guava-libraries/</connection> 35 <developerConnection>scm:git:https://code.google.com/p/guava-libraries/</developerConnection> 36 <url>http://code.google.com/p/guava-libraries/source/browse</url> 37 </scm> 38 <developers> 39 <developer> 40 <id>kevinb9n</id> 41 <name>Kevin Bourillion</name> 42 <email>kevinb@google.com</email> 43 <organization>Google</organization> 44 <organizationUrl>http://www.google.com</organizationUrl> 45 <roles> 46 <role>owner</role> 47 <role>developer</role> 48 </roles> 49 <timezone>-8</timezone> 50 </developer> 51 </developers> 52 <modules> 53 <module>guava</module> 54 <module>guava-bootstrap</module> 55 <module>guava-gwt</module> 56 <module>guava-testlib</module> 57 <module>guava-tests</module> 58 </modules> 59</project> 60