opencast-search-service-api
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-search-service-api</artifactId> <version>16.9</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-search-service-api</artifactId> <name>Opencast :: search-service-api</name> <packaging>bundle</packaging> <parent> <groupId>org.opencastproject</groupId> <artifactId>base</artifactId> <version>16.9</version> <relativePath>../../pom.xml</relativePath> </parent> <properties> <opencast.basedir>${project.basedir}/../..</opencast.basedir> <checkstyle.skip>false</checkstyle.skip> </properties> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-dublincore</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>${elasticsearch.version}</version> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> <version>${lucene.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Export-Package> org.opencastproject.search.api;version=${project.version}, </Export-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>