opencast-engage-theodul-plugin-custom-matomo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-engage-theodul-plugin-custom-matomo</artifactId> <version>8.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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-engage-theodul-plugin-custom-matomo</artifactId> <packaging>bundle</packaging> <name>Opencast :: engage-theodul-plugin-custom-matomo</name> <parent> <groupId>org.opencastproject</groupId> <artifactId>base</artifactId> <version>8.3</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-engage-theodul-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> </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> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Build-Number>${buildNumber}</Build-Number> <Export-Package>org.opencast.engage.theodul.plugin.custom.usertracking;version=${project.version}</Export-Package> <Service-Component>OSGI-INF/engage-plugin.xml</Service-Component> </instructions> </configuration> </plugin> </plugins> </build> </project>