Commit 1b2ecffb by Kausik Das

rem target

parent c1f01ab9
Showing with 23 additions and 7 deletions
......@@ -7,6 +7,7 @@
# dependencies
/node_modules
/target
# IDEs and editors
/.idea
......
......@@ -25,19 +25,34 @@
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>angularInstall</id>
<phase>validate</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>npm</executable>
<workingDirectory>angularClient</workingDirectory>
<arguments>
<argument>install</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>angularBuild</id>
<phase>validate</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>ng</executable>
<workingDirectory>angularClient</workingDirectory>
<arguments>
<argument>build</argument>
</arguments>
</configuration>
</execution>
</executions>
<configuration>
<executable>ng</executable>
<workingDirectory>angularClient</workingDirectory>
<arguments>
<argument>build</argument>
</arguments>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment