opencast-distribution-service-adaptive-streaming-wowza
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-distribution-service-adaptive-streaming-wowza</artifactId> <version>8.11</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-distribution-service-adaptive-streaming-wowza</artifactId> <packaging>bundle</packaging> <name>Opencast :: distribution-service-adaptive-streaming-wowza</name> <parent> <groupId>org.opencastproject</groupId> <artifactId>base</artifactId> <version>8.11</version> <relativePath>../../pom.xml</relativePath> </parent> <properties> <opencast.basedir>${project.basedir}/../..</opencast.basedir> <checkstyle.skip>false</checkstyle.skip> </properties> <dependencies> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-common</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-distribution-service-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-workspace-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-bundle</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <ignoredUnusedDeclaredDependencies> <!-- provide a logger for tests --> <ignoredUnusedDeclaredDependency>org.slf4j:slf4j-log4j12</ignoredUnusedDeclaredDependency> <!-- needed by tests --> <ignoredUnusedDeclaredDependency>com.sun.jersey:jersey-bundle</ignoredUnusedDeclaredDependency> </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> <Import-Package> javax.ws.rs;version=2.0.1, javax.ws.rs.core;version=2.0.1, * </Import-Package> <Export-Package> org.opencastproject.distribution.streaming;version=${project.version} </Export-Package> <Service-Component> OSGI-INF/distribution-service-streaming.xml </Service-Component> </instructions> </configuration> </plugin> </plugins> </build> </project>