Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Kausik Das
/
test_angular
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1b2ecffb
authored
Sep 17, 2018
by
Kausik Das
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
rem target
parent
c1f01ab9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
7 deletions
angularClient/.gitignore
dev_pom.xml
angularClient/.gitignore
View file @
1b2ecffb
...
...
@@ -7,6 +7,7 @@
# dependencies
/node_modules
/target
# IDEs and editors
/.idea
...
...
dev_pom.xml
View file @
1b2ecffb
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment