blob: 9f16b34abead8815997ca4d3d241805087f5f5ea [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>1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Crawler (Apache OODT)</name>
<artifactId>dms-crawler</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<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>cas-crawler</artifactId>
<version>${oodt.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>