blob: 5be580ea0f4d6959e5d657aa761b710bddfe28e6 [file] [log] [blame]
<?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>
<parent>
<groupId>org.apache.drat</groupId>
<artifactId>dms</artifactId>
<version>0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>PCS Config (Apache OODT)</name>
<artifactId>dms-pcs</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-2</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>dist-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.drat</groupId>
<artifactId>dms-extensions</artifactId>
<version>${project.parent.version}</version>
<type>jar</type>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>org.apache.oodt</groupId>
<artifactId>cas-filemgr</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.oodt</groupId>
<artifactId>pcs-core</artifactId>
<version>${oodt.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>