Commit 1b2ecffb by Kausik Das

rem target

parent c1f01ab9
Showing with 17 additions and 1 deletions
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
# dependencies # dependencies
/node_modules /node_modules
/target
# IDEs and editors # IDEs and editors
/.idea /.idea
......
...@@ -25,12 +25,25 @@ ...@@ -25,12 +25,25 @@
<artifactId>exec-maven-plugin</artifactId> <artifactId>exec-maven-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<id>angularInstall</id>
<phase>validate</phase> <phase>validate</phase>
<goals> <goals>
<goal>exec</goal> <goal>exec</goal>
</goals> </goals>
<configuration>
<executable>npm</executable>
<workingDirectory>angularClient</workingDirectory>
<arguments>
<argument>install</argument>
</arguments>
</configuration>
</execution> </execution>
</executions> <execution>
<id>angularBuild</id>
<phase>validate</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration> <configuration>
<executable>ng</executable> <executable>ng</executable>
<workingDirectory>angularClient</workingDirectory> <workingDirectory>angularClient</workingDirectory>
...@@ -38,6 +51,8 @@ ...@@ -38,6 +51,8 @@
<argument>build</argument> <argument>build</argument>
</arguments> </arguments>
</configuration> </configuration>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-resources-plugin</artifactId> <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