Skip to content

Instantly share code, notes, and snippets.

@afsinka
Created February 26, 2016 10:21
Show Gist options
  • Save afsinka/9c74b98e2d7647aaece9 to your computer and use it in GitHub Desktop.
Save afsinka/9c74b98e2d7647aaece9 to your computer and use it in GitHub Desktop.
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>grunt-default</id>
<phase>generate-resources</phase>
<configuration>
<workingDirectory>WebContent</workingDirectory>
<executable>grunt</executable>
<arguments>
<argument>build</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment