diff options
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 139 | 
1 files changed, 139 insertions, 0 deletions
@@ -0,0 +1,139 @@ +<?xml version="1.0" encoding="UTF-8"?>
 +<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">
 +  <modelVersion>4.0.0</modelVersion>
 +  <groupId>com.amazon.carbonado</groupId>
 +  <artifactId>carbonado-test-suite</artifactId>
 +  <packaging>jar</packaging>
 +  <name>CarbonadoTestSuite</name>
 +  <version>1.1-SNAPSHOT</version>
 +  <description>
 +    Test suite for Carbonado.
 +  </description>
 +  <url>http://carbonado.sourceforge.net/</url>
 +  <inceptionYear>2006</inceptionYear>
 +
 +  <organization>
 +    <name>Amazon Technologies, Inc.</name>
 +    <url>http://sourceforge.net/projects/carbonado/</url>
 +  </organization>
 +
 +  <licenses>
 +    <license>
 +      <name>Apache License Version 2.0</name>
 +      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
 +    </license>
 +  </licenses>
 +
 +  <scm>
 +    <connection>scm:svn:https://svn.sourceforge.net/svnroot/carbonado/trunk/CarbonadoTestSuite</connection>
 +    <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/carbonado/trunk/CarbonadoTestSuite</developerConnection>
 +    <url>http://svn.sourceforge.net/viewvc/carbonado/trunk/CarbonadoTestSuite/</url>
 +  </scm>
 +
 +  <issueManagement>
 +    <url>http://sourceforge.net/tracker/?group_id=171277</url>
 +  </issueManagement>
 +
 +  <mailingLists>
 +    <mailingList>
 +      <name>Carbonado Interest list</name>
 +      <subscribe>http://sourceforge.net/mail/?group_id=171277</subscribe>
 +      <unsubscribe>http://sourceforge.net/mail/?group_id=171277</unsubscribe>
 +    </mailingList>
 +  </mailingLists>
 +
 +  <developers>
 +    <developer>
 +      <name>Brian S O'Neill</name>
 +      <id>broneill</id>
 +      <email>broneill@users.sourceforge.net</email>
 +      <organization>Amazon Technologies, Inc.</organization>
 +      <roles>
 +        <role>Project Lead</role>
 +      </roles>
 +    </developer>
 +
 +    <developer>
 +      <name>Don Schneider</name>
 +      <id>dondo_seattle</id>
 +      <email>dondo_seattle@users.sourceforge.net</email>
 +      <organization>Amazon Technologies, Inc.</organization>
 +    </developer>
 +  </developers>
 +
 +  <dependencies>
 +    <dependency>
 +      <groupId>com.amazon.carbonado</groupId>
 +      <artifactId>carbonado</artifactId>
 +      <version>1.1-SNAPSHOT</version>
 +      <scope>test</scope>
 +    </dependency>
 +
 +    <dependency>
 +      <groupId>com.amazon.carbonado</groupId>
 +      <artifactId>carbonado-sleepycat-je</artifactId>
 +      <version>1.1-SNAPSHOT</version>
 +      <scope>test</scope>
 +    </dependency>
 +
 +    <dependency>
 +      <groupId>junit</groupId>
 +      <artifactId>junit</artifactId>
 +      <version>3.8.1</version>
 +      <scope>test</scope>
 +    </dependency>
 +  </dependencies>
 +
 +  <build>
 +    <plugins>
 +      <plugin>
 +        <groupId>org.apache.maven.plugins</groupId>
 +        <artifactId>maven-compiler-plugin</artifactId>
 +        <configuration>
 +          <source>1.5</source>
 +          <target>1.5</target>
 +        </configuration>
 +      </plugin>
 +    </plugins>
 +  </build>
 +
 +  <reporting>
 +    <plugins>
 +      <!--
 +      <plugin>
 +        <groupId>org.apache.maven.plugins</groupId>
 +        <artifactId>maven-javadoc-plugin</artifactId>
 +          <configuration>
 +            <aggregate>true</aggregate>
 +            <links>
 +              <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
 +            </links>
 +          </configuration>
 +      </plugin>
 +      <plugin>
 +        <groupId>org.apache.maven.plugins</groupId>
 +        <artifactId>maven-jxr-plugin</artifactId>
 +        <configuration>
 +          <aggregate>true</aggregate>
 +        </configuration>
 +      </plugin>
 +      -->
 +
 +      <plugin>
 +        <groupId>org.apache.maven.plugins</groupId>
 +        <artifactId>maven-project-info-reports-plugin</artifactId>
 +        <reportSets>
 +          <reportSet>
 +            <reports>
 +              <report>project-team</report>
 +	      <report>mailing-list</report>
 +              <report>issue-tracking</report>
 +              <report>scm</report>
 +              <report>license</report>
 +	    </reports>
 +          </reportSet>
 +        </reportSets>
 +      </plugin>
 +    </plugins>
 +  </reporting>
 +</project>
\ No newline at end of file  | 
