opencast-index-rebuild
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-index-rebuild</artifactId> <version>10.12</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-index-rebuild</artifactId> <packaging>bundle</packaging> <name>Opencast :: index-rebuild</name> <parent> <groupId>org.opencastproject</groupId> <artifactId>base</artifactId> <version>10.12</version> <relativePath>../../pom.xml</relativePath> </parent> <properties> <opencast.basedir>${project.basedir}/../..</opencast.basedir> <checkstyle.skip>false</checkstyle.skip> </properties> <dependencies> <!-- OSGI --> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <scope>compile</scope> </dependency> <!-- Opencast --> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-elasticsearch-index</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-common</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <!-- Other --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <extensions>true</extensions> <configuration> <ignoredUnusedDeclaredDependencies> </ignoredUnusedDeclaredDependencies> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Build-Number>${buildNumber}</Build-Number> <Bundle-Activator>org.opencastproject.index.rebuild.IndexRebuildService</Bundle-Activator> <Export-Package> org.opencastproject.index.rebuild </Export-Package> <Service-Component> </Service-Component> </instructions> </configuration> </plugin> </plugins> </build> </project>