opencast-elasticsearch-index
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-elasticsearch-index</artifactId> <version>16.10</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>opencast-elasticsearch-index</artifactId> <packaging>bundle</packaging> <name>Opencast :: elasticsearch-index</name> <parent> <groupId>org.opencastproject</groupId> <artifactId>base</artifactId> <version>16.10</version> <relativePath>../../pom.xml</relativePath> </parent> <properties> <opencast.basedir>${project.basedir}/../..</opencast.basedir> <checkstyle.skip>false</checkstyle.skip> </properties> <dependencies> <!-- osgi support --> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component.annotations</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.core</artifactId> <scope>compile</scope> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- Opencast --> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-elasticsearch-impl</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-scheduler-api</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-elasticsearch-api</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-common</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-workflow-service-api</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-dublincore</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <!-- elasticsearch --> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>${elasticsearch.version}</version> </dependency> <dependency> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>uk.co.datumedge</groupId> <artifactId>hamcrest-json</artifactId> <version>0.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> </dependency> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> </dependency> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <extensions>true</extensions> <configuration> <ignoredUnusedDeclaredDependencies> <ignoredUnusedDeclaredDependency>org.slf4j:slf4j-reload4j</ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency>org.osgi:org.osgi.service.cm</ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-Activator>org.opencastproject.elasticsearch.index.rebuild.IndexRebuildService</Bundle-Activator> <!-- Only with this can the endpoint class use OSGI annotations while the IndexRebuildService doesn't --> <_dsannotations-options>norequirements</_dsannotations-options> <Export-Package> org.opencastproject.elasticsearch.index, org.opencastproject.elasticsearch.index.endpoint, org.opencastproject.elasticsearch.index.rebuild, org.opencastproject.elasticsearch.index.objects, org.opencastproject.elasticsearch.index.objects.event, org.opencastproject.elasticsearch.index.objects.series, org.opencastproject.elasticsearch.index.objects.theme </Export-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>