opencast-engage-theodul-plugin-video-videojs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-engage-theodul-plugin-video-videojs</artifactId> <version>13.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-video-videojs</artifactId> <packaging>bundle</packaging> <name>Opencast :: engage-theodul-plugin-video-videojs</name> <parent> <groupId>org.opencastproject</groupId> <artifactId>base</artifactId> <version>13.12</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> <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>osgi.cmpn</artifactId> </dependency> </dependencies> <profiles> <profile> <id>frontend-no-prebuilt</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>npm ci</id> <goals> <goal>exec</goal> </goals> <phase>initialize</phase> <configuration> <executable>npm</executable> <arguments> <argument>ci</argument> </arguments> </configuration> </execution> <execution> <id>esline</id> <goals> <goal>exec</goal> </goals> <phase>test</phase> <configuration> <executable>npm</executable> <arguments> <argument>run</argument> <argument>eslint</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>frontend</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>install node and npm</id> <phase>validate</phase> <goals> <goal>install-node-and-npm</goal> </goals> <configuration> <nodeVersion>${node.version}</nodeVersion> <npmVersion>${npm.version}</npmVersion> </configuration> </execution> <execution> <phase>validate</phase> <id>npm ci</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>ci</arguments> </configuration> </execution> <execution> <phase>test</phase> <id>eslint</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>run eslint</arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <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.video.videojs;version=${project.version} </Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>com.googlecode.jslint4java</groupId> <artifactId>jslint4java-maven-plugin</artifactId> <version>2.0.0</version> <executions> <execution> <id>lint</id> <phase>process-resources</phase> <goals> <goal>lint</goal> </goals> <configuration> <failOnError>false</failOnError> <options> <undef>true</undef> <predef>videojs, _V_, define</predef> <indent>4</indent> <eqeq>true</eqeq> <sloppy>false</sloppy> <white>false</white> </options> <excludes> <exclude>**/lib/*.js</exclude> <exclude>**/lib/video-js/*.js</exclude> <exclude>**/lib/video-js/lang/*.js</exclude> <exclude>**/lib/video-js/alt/*.js</exclude> <exclude>**/lib/video-js/ie8/*.js</exclude> </excludes> <sourceFolders> <folder>${project.basedir}/src/main/resources/static</folder> </sourceFolders> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>