<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.dataone</groupId> <artifactId>d1_auditing_java</artifactId> <version>1.0.0-SNAPSHOT</version> <name>DataONE_Auditing_Tools</name> <description>a collection of tools and test for auditing the content on a DataONE environment</description> <url>http://dataone.org</url> <packaging>jar</packaging> <repositories> <repository> <id>sonatype.org</id> <url>https://repository.sonatype.org/content/shadows/centralm1</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>dataone.org</id> <url>http://maven.dataone.org/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>org.dataone</groupId> <artifactId>d1_libclient_java</artifactId> <version>1.3.0-SNAPSHOT</version> <type>jar</type> <scope>compile</scope> </dependency> <!-- <dependency> --> <!-- <groupId>org.dataone</groupId> --> <!-- <artifactId>d1_common_java</artifactId> --> <!-- <version>1.0.3</version> --> <!-- <type>jar</type> --> <!-- <scope>compile</scope> --> <!-- </dependency> --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <type>jar</type> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>org.dataone.audit.Main</mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>