mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-23 18:03:11 +00:00
78 lines
2.8 KiB
XML
78 lines
2.8 KiB
XML
<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>
|
|
<groupId>org.dspace.modules</groupId>
|
|
<artifactId>solr</artifactId>
|
|
<version>3.0-rc3</version>
|
|
<packaging>war</packaging>
|
|
<name>DSpace SOLR :: Local Customizations</name>
|
|
<description>
|
|
This project allows you to overlay your own local SOLR customizations
|
|
on top of the default SOLR web application provided with DSpace.
|
|
</description>
|
|
|
|
<parent>
|
|
<groupId>org.dspace</groupId>
|
|
<artifactId>modules</artifactId>
|
|
<version>3.0-rc3</version>
|
|
<relativePath>..</relativePath>
|
|
</parent>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<configuration>
|
|
<!-- This 'dspace-solr' WAR overlays the Apache Solr Web Application
|
|
available in Maven Central -->
|
|
<overlays>
|
|
<overlay>
|
|
<groupId>org.apache.solr</groupId>
|
|
<artifactId>solr</artifactId>
|
|
<!--
|
|
Exclude the solr core named apache-solr-core, this is needed because the dspace-solr changes
|
|
need to take precedence over the solr-core, the solr-core will still be loaded in the solr-core.jar
|
|
-->
|
|
<excludes>
|
|
<exclude>WEB-INF/lib/apache-solr-core-3.5.0.jar</exclude>
|
|
<!--Also ensure we use the DSpace solr web.xml file else our localhost filter will not work !-->
|
|
<exclude>WEB-INF/web.xml</exclude>
|
|
</excludes>
|
|
</overlay>
|
|
</overlays>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>prepare-package</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.dspace</groupId>
|
|
<artifactId>dspace-solr</artifactId>
|
|
<version>3.5.0.1</version>
|
|
<classifier>skinny</classifier>
|
|
<type>war</type>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.dspace</groupId>
|
|
<artifactId>dspace-solr</artifactId>
|
|
<version>3.5.0.1</version>
|
|
<classifier>classes</classifier>
|
|
<type>jar</type>
|
|
</dependency>
|
|
|
|
<!-- support odd cases where JAXP cannot be found in JVM -->
|
|
<dependency>
|
|
<groupId>xalan</groupId>
|
|
<artifactId>xalan</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|