fitnesse-connect-testbed-ui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.processpuzzle.fitnesse</groupId>
<artifactId>fitnesse-connect-testbed-ui</artifactId>
<version>1.1.13</version>
</dependency><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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.processpuzzle.fitnesse</groupId>
<artifactId>fitnesse-connect-parent</artifactId>
<relativePath>../fitnesse-connect-parent</relativePath>
<version>1.1.13</version>
</parent>
<artifactId>fitnesse-connect-testbed-ui</artifactId>
<packaging>pom</packaging>
<name>FitNesseConnect - Testbed UI</name>
<description>Angular User interface for the testbed </description>
<properties>
<DEPLOYMENT_ENVIRONMENT>dev</DEPLOYMENT_ENVIRONMENT>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.6</version>
<configuration>
<nodeVersion>${node.version}</nodeVersion>
<npmVersion>${npm.version}</npmVersion>
<installDirectory>target</installDirectory>
</configuration>
<executions>
<execution>
<id>install node and npm</id>
<phase>process-sources</phase>
<goals>
<goal>install-node-and-npm</goal>
</goals>
</execution>
<execution>
<id>npm update</id>
<phase>process-source</phase>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>update</arguments>
</configuration>
</execution>
<execution>
<id>npm run-script lint</id>
<phase>process-sources</phase>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run-script lint</arguments>
</configuration>
</execution>
<execution>
<id>npm run-script build</id>
<phase>compile</phase>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run-script build-${DEPLOYMENT_ENVIRONMENT}</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/../fitnesse-connect-testbed-backend/src/main/resources/public</outputDirectory>
<resources>
<resource>
<directory>dist</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>