opencast-smil-workflowoperation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-smil-workflowoperation</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-smil-workflowoperation</artifactId> <packaging>bundle</packaging> <name>Opencast :: smil-workflowoperation</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> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-workflow-service-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-smil-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-workspace-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> </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>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component.annotations</artifactId> <scope>compile</scope> </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-reload4j</ignoredUnusedDeclaredDependency> <!-- XML runtime for tests --> <ignoredUnusedDeclaredDependency>org.glassfish.jaxb:jaxb-runtime</ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Export-Package> org.opencastproject.workflow.handler.smil;version=${project.version} </Export-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>