Home | History | Annotate | Download | only in 13.0.1
      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>13.0.1</version>
     15   <packaging>pom</packaging>
     16   <name>Guava Maven Parent</name>
     17   <url>http://code.google.com/p/guava-libraries</url>
     18   <properties>
     19     <gpg.skip>true</gpg.skip>
     20   </properties>
     21   <issueManagement>
     22     <system>code.google.com</system>
     23     <url>http://code.google.com/p/guava-libraries/issues</url>
     24   </issueManagement>
     25   <inceptionYear>2010</inceptionYear>
     26   <licenses>
     27     <license>
     28       <name>The Apache Software License, Version 2.0</name>
     29       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
     30       <distribution>repo</distribution>
     31     </license>
     32   </licenses>
     33   <prerequisites>
     34     <maven>2.0.9</maven>
     35   </prerequisites>
     36   <scm>
     37     <connection>scm:git:https://code.google.com/p/guava-libraries/</connection>
     38     <developerConnection>scm:git:https://code.google.com/p/guava-libraries/</developerConnection>
     39     <url>http://code.google.com/p/guava-libraries/source/browse</url>
     40   </scm>
     41   <developers>
     42     <developer>
     43       <id>kevinb9n</id>
     44       <name>Kevin Bourrillion</name>
     45       <email>kevinb (a] google.com</email>
     46       <organization>Google</organization>
     47       <organizationUrl>http://www.google.com</organizationUrl>
     48       <roles>
     49         <role>owner</role>
     50         <role>developer</role>
     51       </roles>
     52       <timezone>-8</timezone>
     53     </developer>
     54   </developers>
     55   <modules>
     56     <module>guava</module>
     57     <module>guava-gwt</module>
     58     <module>guava-testlib</module>
     59     <module>guava-tests</module>
     60   </modules>
     61   <build>
     62     <plugins>
     63       <plugin>
     64         <artifactId>maven-gpg-plugin</artifactId>
     65         <version>1.4</version>
     66         <executions>
     67           <execution>
     68             <id>sign-artifacts</id>
     69             <phase>verify</phase>
     70             <goals><goal>sign</goal></goals>
     71           </execution>
     72         </executions>
     73       </plugin>
     74     </plugins>
     75   </build>
     76   <distributionManagement>
     77     <site>
     78       <id>guava-site</id>
     79       <name>Guava Documentation Site</name>
     80       <url>scp://dummy.server/dontinstall/usestaging</url>
     81     </site>
     82   </distributionManagement>
     83 </project>
     84