opencast-engage-theodul-plugin-timeline-statistics
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.opencastproject</groupId>
<artifactId>opencast-engage-theodul-plugin-timeline-statistics</artifactId>
<version>9.12</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-timeline-statistics</artifactId>
<packaging>bundle</packaging>
<name>Opencast :: engage-theodul-plugin-timeline-statistics</name>
<parent>
<groupId>org.opencastproject</groupId>
<artifactId>base</artifactId>
<version>9.12</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<properties>
<opencast.basedir>${project.basedir}/../..</opencast.basedir>
<checkstyle.skip>false</checkstyle.skip>
<skipJasmineTests>true</skipJasmineTests>
</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>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-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>
<Import-Package>
javax.ws.rs;version=2.0.1,
*
</Import-Package>
<Export-Package>
org.opencastproject.engage.theodul.plugin.timeline.statistics;version=${project.version}
</Export-Package>
<Service-Component>
OSGI-INF/engage-plugin.xml
</Service-Component>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>com.github.klieber</groupId>
<artifactId>phantomjs-maven-plugin</artifactId>
</plugin>
<plugin>
<!-- Further plugin parameter information http://searls.github.io/jasmine-maven-plugin/bdd-mojo.html -->
<groupId>com.github.searls</groupId>
<artifactId>jasmine-maven-plugin</artifactId>
<configuration>
<preloadSources>
<source>${project.basedir}/src/test/resources/js/lib/require.js</source>
</preloadSources>
<jsSrcDir>${project.basedir}/src/main/resources/static</jsSrcDir>
<sourceIncludes>
<include>**/*.js</include>
<include>**/*.coffee</include>
</sourceIncludes>
<jsTestSrcDir>${project.basedir}/src/test/resources/js/spec</jsTestSrcDir>
<specIncludes>
<include>**/spec_helper.js</include>
<include>**/*.js</include>
<include>**/*.coffee</include>
</specIncludes>
<specRunnerTemplate>REQUIRE_JS</specRunnerTemplate>
<webDriverClassName>org.openqa.selenium.phantomjs.PhantomJSDriver</webDriverClassName>
<webDriverCapabilities>
<capability>
<name>phantomjs.binary.path</name>
<value>${phantomjs.binary}</value>
</capability>
</webDriverCapabilities>
<format>progress</format>
</configuration>
</plugin>
</plugins>
</build>
</project>