Show
hide
<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>org.duracloud.mill</groupId>
<artifactId>manifest-cleaner</artifactId>
<version>2.0.18</version>
<name>DuraCloud Mill Manifest Cleaner</name>
<parent>
<artifactId>mill</artifactId>
<groupId>org.duracloud.mill</groupId>
<version>2.0.18</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
<!-- see maven-shade-plugin in root pom.xml -->
<mainClass>org.duracloud.mill.manifest.cleaner.ManifestCleanerDriver</mainClass>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.duracloud.mill</groupId>
<artifactId>common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.duracloud.db</groupId>
<artifactId>mill-db-repo</artifactId>
</dependency>
<dependency>
<groupId>org.duracloud</groupId>
<artifactId>common-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>org.duracloud</groupId>
<artifactId>common</artifactId>
</dependency>
</dependencies>
</project>
|