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
6c06fd0a
Commit
6c06fd0a
authored
9 years ago
by
Shwetha GS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-199 webapp build fails (grunt + tests) (sanjayp via shwethags)
parent
8c4a7fae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
81 additions
and
149 deletions
+81
-149
pom.xml
dashboard/pom.xml
+80
-149
release-log.txt
release-log.txt
+1
-0
No files found.
dashboard/pom.xml
View file @
6c06fd0a
...
@@ -42,6 +42,7 @@
...
@@ -42,6 +42,7 @@
<groupId>
com.github.eirslett
</groupId>
<groupId>
com.github.eirslett
</groupId>
<artifactId>
frontend-maven-plugin
</artifactId>
<artifactId>
frontend-maven-plugin
</artifactId>
<configuration>
<configuration>
<phase>
validate
</phase>
<workingDirectory>
${project.build.directory}
</workingDirectory>
<workingDirectory>
${project.build.directory}
</workingDirectory>
</configuration>
</configuration>
</plugin>
</plugin>
...
@@ -60,154 +61,85 @@
...
@@ -60,154 +61,85 @@
</webResources>
</webResources>
</configuration>
</configuration>
</plugin>
</plugin>
<plugin>
<artifactId>
maven-resources-plugin
</artifactId>
<version>
2.7
</version>
<executions>
<execution>
<id>
copy-resources
</id>
<goals>
<goal>
copy-resources
</goal>
</goals>
<phase>
validate
</phase>
<configuration>
<outputDirectory>
${basedir}/target/
</outputDirectory>
<resources>
<resource>
<directory>
${basedir}
</directory>
<includes>
<include>
package.json
</include>
<include>
.bowerrc
</include>
<include>
bower.json
</include>
<include>
gruntfile.js
</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
com.github.eirslett
</groupId>
<artifactId>
frontend-maven-plugin
</artifactId>
<executions>
<execution>
<id>
install node and npm
</id>
<goals>
<goal>
install-node-and-npm
</goal>
</goals>
<configuration>
<nodeVersion>
${node.version}
</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>
install bower
</id>
<goals>
<goal>
grunt
</goal>
</goals>
<configuration>
<arguments>
bower
</arguments>
</configuration>
</execution>
<execution>
<id>
npm remaining
</id>
<goals>
<goal>
npm
</goal>
</goals>
<configuration>
<arguments>
install --ignore-scripts
</arguments>
</configuration>
</execution>
<execution>
<id>
grunt dist
</id>
<goals>
<goal>
grunt
</goal>
</goals>
<configuration>
<arguments>
build
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</plugins>
</build>
</build>
<profiles>
<profile>
<id>
install-node
</id>
<activation>
<file>
<missing>
${project.build.directory}/node
</missing>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>
com.github.eirslett
</groupId>
<artifactId>
frontend-maven-plugin
</artifactId>
<executions>
<execution>
<id>
install node and npm
</id>
<goals>
<goal>
install-node-and-npm
</goal>
</goals>
<configuration>
<nodeVersion>
${node.version}
</nodeVersion>
<npmVersion>
1.4.3
</npmVersion>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>
maven-resources-plugin
</artifactId>
<version>
2.7
</version>
<executions>
<execution>
<id>
copy-resources
</id>
<goals>
<goal>
copy-resources
</goal>
</goals>
<phase>
validate
</phase>
<configuration>
<outputDirectory>
${basedir}/target/
</outputDirectory>
<resources>
<resource>
<directory>
${basedir}
</directory>
<includes>
<include>
package.json
</include>
<include>
.bowerrc
</include>
<include>
bower.json
</include>
<include>
gruntfile.js
</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>
install-node_modules
</id>
<activation>
<file>
<missing>
${project.build.directory}/node_modules
</missing>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>
com.github.eirslett
</groupId>
<artifactId>
frontend-maven-plugin
</artifactId>
<executions>
<execution>
<id>
npm install
</id>
<goals>
<goal>
npm
</goal>
</goals>
<configuration>
<arguments>
install
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>
bower-install
</id>
<activation>
<file>
<missing>
${project.build.directory}/dist/lib
</missing>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>
com.github.eirslett
</groupId>
<artifactId>
frontend-maven-plugin
</artifactId>
<executions>
<execution>
<id>
install bower
</id>
<goals>
<goal>
grunt
</goal>
</goals>
<configuration>
<arguments>
bower
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>
grunt-task
</id>
<activation>
<property>
<name>
!disableGrunt
</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>
com.github.eirslett
</groupId>
<artifactId>
frontend-maven-plugin
</artifactId>
<executions>
<execution>
<id>
npm remaining
</id>
<goals>
<goal>
npm
</goal>
</goals>
<configuration>
<arguments>
install --ignore-scripts
</arguments>
</configuration>
</execution>
<execution>
<id>
grunt dist
</id>
<goals>
<goal>
grunt
</goal>
</goals>
<configuration>
<arguments>
build
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
release-log.txt
View file @
6c06fd0a
...
@@ -7,6 +7,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
...
@@ -7,6 +7,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ALL CHANGES:
ALL CHANGES:
ATLAS-199 webapp build fails (grunt + tests) (sanjayp via shwethags)
ATLAS-415 Hive import fails when importing a table that is already imported without StorageDescriptor information (yhemanth via shwethags)
ATLAS-415 Hive import fails when importing a table that is already imported without StorageDescriptor information (yhemanth via shwethags)
ATLAS-450 quick_start fails on cygwin (dkantor via shwethags)
ATLAS-450 quick_start fails on cygwin (dkantor via shwethags)
ATLAS-451 Doc: Fix few broken links due to Wiki words in Atlas documentation (ssainath via shwethags)
ATLAS-451 Doc: Fix few broken links due to Wiki words in Atlas documentation (ssainath via shwethags)
...
...
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