META-INF.maven.org.opencastproject.opencast-execute-api.pom.xml Maven / Gradle / Ivy
The newest version!
<?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> <groupId>org.opencastproject</groupId> <artifactId>opencast-execute-api</artifactId> <packaging>bundle</packaging> <name>Opencast :: execute-api</name> <parent> <groupId>org.opencastproject</groupId> <artifactId>base</artifactId> <version>16.4</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> <scope>provided</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.execute.api;version=${project.version} </Export-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>