Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
beb788a8
Commit
beb788a8
authored
9 years ago
by
Vishal Kadam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HDPDGI-45: Creating ui distribution during war file creation
parent
9dfa1824
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
3 deletions
+46
-3
.gitignore
dashboard/v2/.gitignore
+4
-2
pom.xml
webapp/pom.xml
+42
-1
No files found.
dashboard/v2/.gitignore
View file @
beb788a8
...
...
@@ -22,4 +22,7 @@ lib/
public/lib
public/dist
*.log
*.tgz
\ No newline at end of file
*.tgz
node/
dist/
**/app.min.js
This diff is collapsed.
Click to expand it.
webapp/pom.xml
View file @
beb788a8
...
...
@@ -201,6 +201,47 @@
<build>
<plugins>
<plugin>
<groupId>
com.github.eirslett
</groupId>
<artifactId>
frontend-maven-plugin
</artifactId>
<version>
0.0.14
</version>
<!-- optional -->
<configuration>
<workingDirectory>
../dashboard/v2/
</workingDirectory>
</configuration>
<executions>
<execution>
<id>
install node and npm
</id>
<goals>
<goal>
install-node-and-npm
</goal>
</goals>
<configuration>
<nodeVersion>
v0.10.30
</nodeVersion>
<npmVersion>
1.4.3
</npmVersion>
</configuration>
</execution>
<execution>
<id>
npm install
</id>
<goals>
<goal>
npm
</goal>
</goals>
<configuration>
<arguments>
install
</arguments>
</configuration>
</execution>
<execution>
<id>
grunt dist
</id>
<goals>
<goal>
grunt
</goal>
</goals>
<configuration>
<arguments>
build
</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<executions>
...
...
@@ -230,7 +271,7 @@
<attachClasses>
true
</attachClasses>
<webResources>
<resource>
<directory>
../dashboard/v
3
</directory>
<directory>
../dashboard/v
2/dist
</directory>
<targetPath>
dashboard
</targetPath>
</resource>
<resource>
...
...
This diff is collapsed.
Click to expand it.
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