warc-hadoop-indexer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.bl.wa.discovery</groupId> <artifactId>warc-hadoop-indexer</artifactId> <version>2.2.0-BETA-6</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>warc-hadoop-indexer</artifactId> <parent> <groupId>uk.bl.wa.discovery</groupId> <artifactId>warc-discovery</artifactId> <version>2.2.0-BETA-6</version> <relativePath>..</relativePath> </parent> <licenses> <license> <name>GNU General Public License Version 2</name> <url>http://www.gnu.org/copyleft/gpl.html</url> <distribution>repo</distribution> </license> </licenses> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4</version> <configuration> <descriptors> <descriptor>src/main/assembly/hadoop-job.xml</descriptor> </descriptors> <!-- <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> --> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>uk.bl.wa.discovery</groupId> <artifactId>warc-hadoop-recordreaders</artifactId> <version>2.2.0-BETA-6</version> </dependency> <dependency> <groupId>uk.bl.wa.discovery</groupId> <artifactId>warc-indexer</artifactId> <version>2.2.0-BETA-6</version> <exclusions> <exclusion> <artifactId>logback-classic</artifactId> <groupId>ch.qos.logback</groupId> </exclusion> <exclusion> <artifactId>logback-core</artifactId> <groupId>ch.qos.logback</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.6.1</version> <scope>test</scope> </dependency> </dependencies> </project>