search-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.sakaiproject.search</groupId>
<artifactId>search-impl</artifactId>
<version>11.4</version>
</dependency><?xml version="1.0"?>
<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>
<artifactId>search</artifactId>
<groupId>org.sakaiproject.search</groupId>
<version>11.4</version><!-- ProjectVersion -->
<relativePath>../../pom.xml</relativePath>
</parent>
<name>search-impl</name>
<groupId>org.sakaiproject.search</groupId>
<artifactId>search-impl</artifactId>
<packaging>jar</packaging>
<profiles>
<profile>
<id>1.7</id>
<activation>
<jdk>[1.7,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>org.sakaiproject.search</groupId>
<artifactId>search-test-1.7</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<maven.test.jvmargs />
<lucene.version>4.5.0</lucene.version>
<bouncycastle.artifact.version>jdk16</bouncycastle.artifact.version>
</properties>
</profile>
</profiles>
<build>
<resources>
<resource>
<directory>${basedir}/src/bundle</directory>
<includes>
<include>**/*.*</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>${basedir}/src/sql</directory>
<includes>
<include>**/*.sql</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>${basedir}/src/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.xslt</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
<!-- java source -->
<testResources>
<testResource>
<directory>${basedir}/src/testBundle</directory>
<includes>
<include>**/*.*</include>
</includes>
<filtering>false</filtering>
</testResource>
<testResource>
<directory>${basedir}/src/test</directory>
<includes>
<include>**/*.properties</include>
</includes>
<filtering>false</filtering>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<reuseFork>false</reuseFork>
<argLine>${maven.test.jvmargs}</argLine>
<!-- This test randomly has errors at present SAK-13616 -->
<excludes>
<exclude>**/OpenFilesTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.sakaiproject.kernel</groupId>
<artifactId>sakai-kernel-util</artifactId>
</dependency>
<dependency>
<groupId>org.sakaiproject.kernel</groupId>
<artifactId>sakai-kernel-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.sakaiproject.kernel</groupId>
<artifactId>sakai-component-manager</artifactId>
</dependency>
<dependency>
<groupId>org.sakaiproject.search</groupId>
<artifactId>search-api</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.sakaiproject.search</groupId>
<artifactId>search-util</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache.sanselan</groupId>
<artifactId>sanselan</artifactId>
<version>0.97-incubator</version>
</dependency>
<dependency>
<groupId>jtidy</groupId>
<artifactId>jtidy</artifactId>
<version>4aug2000r7-dev</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>${sakai.poi.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${sakai.poi.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-scratchpad</artifactId>
<version>${sakai.poi.version}</version>
<type>jar</type>
</dependency>
<!-- As Tika is uses PDFbox the 2 versions need to
be co-ordinated -->
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>1.8.6</version>
</dependency>
<!-- PDF box uses BouncyCastle for crypotgraphic functions at runtime -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-${bouncycastle.artifact.version}</artifactId>
<version>1.44</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-${bouncycastle.artifact.version}</artifactId>
<version>1.44</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-parsers</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
<!--
HSQL DB does not have clean transaction isolation
and hence cannot be used to correctly test the
transaction sequence code, hence derby
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.8.2.2</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>2.4</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<!-- added for search/entitybroker integration -->
<dependency>
<groupId>org.sakaiproject.entitybroker</groupId>
<artifactId>entitybroker-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.sakaiproject.entitybroker</groupId>
<artifactId>entitybroker-utils</artifactId>
</dependency>
</dependencies>
</project>