<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/xsd/maven-4.0.0.xsd"> 
  <modelVersion>4.0.0</modelVersion>  

  <groupId>org.limewire</groupId>
  <artifactId>mojito</artifactId>
  <packaging>jar</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>LimeWire Mojito DHT</name>

  <properties>
    <lw-components.version>4.13.1-SNAPSHOT</lw-components.version>
  </properties>

  <organization>
    <name>Lime Wire LLC</name>
    <url>http://limewire.org</url>
  </organization>

  <licenses>
    <license>
      <name>GNU General Public License Version 2</name> 
      <url>http://www.gnu.org/licenses/gpl.txt</url> 
      <distribution>repo</distribution> 
    </license>
  </licenses>

  <issueManagement>
    <system>JIRA</system>
    <url>https://www.limewire.org/jira/secure/Dashboard.jspa</url>
  </issueManagement>

  <scm>
    <connection>scm:cvs:pserver:guest:guest@cvs.limewire.org:/cvs:mojito</connection>
    <tag>HEAD</tag>
    <url>https://www.limewire.org/fisheye/browse/limecvs/mojito</url>
  </scm>

  <repositories>
    <repository>
      <id>limewire</id>
      <name>LimeWire Repository</name>
      <layout>default</layout>
      <url>http://limewire.org/repository</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>

  <dependencies> 
	<!-- LimeWire Components -->
    <dependency>
      <groupId>org.limewire</groupId>
      <artifactId>lw-common</artifactId>
      <version>${lw-components.version}</version>
    </dependency>
    <dependency>
      <groupId>org.limewire</groupId>
      <artifactId>lw-collection</artifactId>
      <version>${lw-components.version}</version>
    </dependency>
    <dependency>
      <groupId>org.limewire</groupId>
      <artifactId>lw-io</artifactId>
      <version>${lw-components.version}</version>
    </dependency>
    <dependency>
      <groupId>org.limewire</groupId>
      <artifactId>lw-security</artifactId>
      <version>${lw-components.version}</version>
    </dependency>
    <dependency>
      <groupId>org.limewire</groupId>
      <artifactId>lw-setting</artifactId>
      <version>${lw-components.version}</version>
    </dependency>
    <dependency>
      <groupId>org.limewire</groupId>
      <artifactId>lw-test-util</artifactId>
      <version>${lw-components.version}</version>
	  <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <sourceDirectory>src/main/java</sourceDirectory>
    <testSourceDirectory>src/test/java</testSourceDirectory>
	<resources>
      <resource>
        <directory>src/main/resources</directory> 
      </resource>
    </resources>
    <testResources>
      <testResource>
        <directory>src/test/resources</directory>
      </testResource>
    </testResources>
    <plugins>
      <plugin>
	    <groupId>org.apache.maven.plugins</groupId>
	    <artifactId>maven-compiler-plugin</artifactId>
		<configuration>
		  <source>1.5</source>
		  <target>1.5</target>
	    </configuration>
     </plugin>
     <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <argLine>-enableassertions</argLine>
        </configuration>
     </plugin>
     <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-eclipse-plugin</artifactId>
        <configuration>
          <downloadSources>true</downloadSources>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <reporting>
    <outputDirectory>target/site</outputDirectory>
    <plugins>
	  <plugin>
	    <groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-project-info-reports-plugin</artifactId>
		<reportSets>
		  <reportSet>
		    <reports>
			  <report>dependencies</report>
<!-- 			  <report>project-team</report> -->
<!-- 			  <report>mailing-list</report> -->
<!-- 			  <report>cim</report> -->
			  <report>index</report>
			  <report>issue-tracking</report>
			  <report>license</report>
			  <report>scm</report>
			  <report>summary</report>
		    </reports>
		  </reportSet>
		</reportSets>
	  </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-report-plugin</artifactId>
      </plugin>
	  <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jxr-plugin</artifactId>
      </plugin>
	  <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>

</project>
