footprint
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.java.dev.footprint</groupId>
<artifactId>footprint</artifactId>
<version>1.0-rc7</version>
</dependency><?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd' xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<modelVersion>4.0.0</modelVersion>
<groupId>net.java.dev.footprint</groupId>
<artifactId>footprint</artifactId>
<packaging>pom</packaging>
<version>1.0-rc7</version>
<name>footprint</name>
<url>http://maven.apache.org</url>
<modules>
<module>footprint-core</module>
<module>footprint-demo</module>
<!-- module>footprint-service</module>
<module>footprint-service-metadata</module>
<module>footprint-service-ear</module-->
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.sou eforge.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>1.3.8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>1.3.8</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<extensions>
<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.3</version>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>java.net-maven2-repository</id>
<url>java-net:/maven2-repository/trunk/repository</url>
</repository>
</distributionManagement>
<pluginRepositories>
</pluginRepositories>
<repositories>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.4</version>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
<targetJdk>1.6</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
</plugins>
</reporting>
<scm>
<connection>scm:svn:https://felipegaucho@footprint.dev.java.net/svn/footprint</connection>
<!-- connection>
scm:svn:https://felipegaucho@footprint.dev.java.net/svn/footprint/tags/footprint-1.0-SNAPSHOT
</connection>
<developerConnection>
scm:svn:https://footprint.dev.java.net/svn/footprint/tags/footprint-1.0-SNAPSHOT
</developerConnection>
<url>
https://hudson.dev.java.net/svn/footprint/tags/footprint-1.0-SNAPSHOT
</url-->
</scm>
</project>