warc-hadoop-indexer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.bl.wa.discovery</groupId> <artifactId>warc-hadoop-indexer</artifactId> <version>3.3.0</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>3.3.0</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> <artifactId>maven-assembly-plugin</artifactId> <version>3.3.0</version> <configuration> <descriptors> <descriptor>src/main/assembly/hadoop-job.xml</descriptor> </descriptors> <archive> <manifest> <mainClass>uk.bl.wa.hadoop.indexer.WARCIndexerRunner</mainClass> </manifest> </archive> <!-- <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>3.3.0</version> </dependency> <dependency> <groupId>uk.bl.wa.discovery</groupId> <artifactId>warc-hadoop-recordreaders</artifactId> <version>3.3.0</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>uk.bl.wa.discovery</groupId> <artifactId>warc-indexer</artifactId> <version>3.3.0</version> </dependency> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> <version>${hadoop.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-test</artifactId> <version>${hadoop.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.mrunit</groupId> <artifactId>mrunit</artifactId> <version>0.9.0-incubating</version> <classifier>hadoop1</classifier> <scope>test</scope> </dependency> </dependencies> </project>