opencast-engage-paella-player-7
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opencastproject</groupId> <artifactId>opencast-engage-paella-player-7</artifactId> <version>16.10</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> <artifactId>opencast-engage-paella-player-7</artifactId> <packaging>bundle</packaging> <name>Opencast :: engage-paella-player-7</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> </properties> <dependencies /> <profiles> <profile> <id>frontend-no-prebuilt</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <phase>validate</phase> <id>npm ci</id> <goals> <goal>exec</goal> </goals> <configuration> <executable>npm</executable> <arguments> <argument>ci</argument> </arguments> </configuration> </execution> <execution> <phase>validate</phase> <id>check</id> <goals> <goal>exec</goal> </goals> <configuration> <executable>npm</executable> <arguments> <argument>run</argument> <argument>check</argument> </arguments> </configuration> </execution> <execution> <phase>validate</phase> <id>frontend build</id> <goals> <goal>exec</goal> </goals> <configuration> <executable>npm</executable> <arguments> <argument>run</argument> <argument>build</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> </configuration> </execution> <execution> <phase>validate</phase> <id>npm ci</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>ci</arguments> </configuration> </execution> <execution> <phase>validate</phase> <id>check</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>run check</arguments> </configuration> </execution> <execution> <phase>validate</phase> <id>frontend build</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>run build</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.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-player</id> <phase>compile</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/classes/ui/</outputDirectory> <resources> <resource> <directory>./target/paella-build</directory> <includes> <include>**</include> </includes> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Private-Package>ui.*</Private-Package> <Http-Alias>/paella7/ui</Http-Alias> <Http-Classpath>/ui</Http-Classpath> <Http-Welcome>watch.html</Http-Welcome> </instructions> </configuration> <executions> <execution> </execution> </executions> </plugin> </plugins> </build> </project>