Commit 1b2ecffb by Kausik Das

rem target

parent c1f01ab9
Showing with 23 additions and 7 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,19 +25,34 @@ ...@@ -25,19 +25,34 @@
<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>
<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> </execution>
</executions> </executions>
<configuration>
<executable>ng</executable>
<workingDirectory>angularClient</workingDirectory>
<arguments>
<argument>build</argument>
</arguments>
</configuration>
</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