handlebars-maven-plugin-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.jknack</groupId>
<artifactId>handlebars-maven-plugin-tests</artifactId>
<version>4.5.4</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 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>com.github.jknack</groupId>
<artifactId>handlebars.java</artifactId>
<version>4.5.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>handlebars-maven-plugin-tests</artifactId>
<packaging>war</packaging>
<name>Handlebars.js maven plugin tests</name>
<description>Tests suite for handlebars-maven-plugin</description>
<build>
<plugins>
<plugin>
<groupId>com.github.jknack</groupId>
<artifactId>handlebars-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<id>i18njs</id>
<goals>
<goal>i18njs</goal>
</goals>
</execution>
<execution>
<id>precompile</id>
<goals>
<goal>precompile</goal>
</goals>
<configuration>
<suffix>.html</suffix>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.4.0</version>
</plugin>
<!-- Deploy plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>