opencast-asset-manager-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-asset-manager-api</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-asset-manager-api</artifactId> <name>Opencast :: asset-manager-api</name> <packaging>bundle</packaging> <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> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-common</artifactId> <version>${project.version}</version> </dependency> <!-- - unit tests --> <!-- - Parameterized tests for JUnit - https://github.com/Pragmatists/JUnitParams --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>pl.pragmatists</groupId> <artifactId>JUnitParams</artifactId> <version>1.0.4</version> <scope>test</scope> </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> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Export-Package> org.opencastproject.assetmanager.api;version=${project.version}, org.opencastproject.assetmanager.api.fn;version=${project.version}, org.opencastproject.assetmanager.api.query;version=${project.version}, org.opencastproject.assetmanager.api.storage;version=${project.version} </Export-Package> <Private-Package> javax.annotation* </Private-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>