solr-test-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.bl.wa.discovery</groupId> <artifactId>solr-test-server</artifactId> <version>2.2.0-BETA-6</version> </dependency>
<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> <artifactId>solr-test-server</artifactId> <packaging>war</packaging> <parent> <groupId>uk.bl.wa.discovery</groupId> <artifactId>warc-discovery</artifactId> <version>2.2.0-BETA-6</version> <relativePath>..</relativePath> </parent> <dependencies> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr</artifactId> <version>${solr.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-velocity</artifactId> <version>${solr.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.6</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>8.1.3.v20120416</version> <configuration> <systemProperties> <systemProperty> <name>solr.solr.home</name> <value>${basedir}/../warc-indexer/src/main/solr/solr</value> </systemProperty> <systemProperty> <name>solr.data.dir</name> <value>${project.build.directory}/solr/data</value> </systemProperty> <!-- <systemProperty> <name>jetty.port</name> <value>8983</value> </systemProperty> --> </systemProperties> </configuration> <executions> <execution> <goals> <goal>run-exploded</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>