webui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.puresoltechnologies.purifinity.webui</groupId>
<artifactId>webui</artifactId>
<version>0.4.1</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.puresoltechnologies.purifinity.webui</groupId>
<artifactId>webui-parent</artifactId>
<version>0.4.1</version>
</parent>
<artifactId>webui</artifactId>
<packaging>pom</packaging>
<name>Purifinity Web UI: ${project.artifactId}</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/webui.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>webui-packaging</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
<configuration>
<filesets>
<fileset>
<directory>node_modules</directory>
</fileset>
<fileset>
<directory>bower_components</directory>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>pl.allegro</groupId>
<artifactId>grunt-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<id>exec-npm-install</id>
<phase>initialize</phase>
<goals>
<goal>npm</goal>
</goals>
</execution>
<execution>
<id>launch-grunt</id>
<phase>prepare-package</phase>
<goals>
<goal>grunt</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>