[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-29 Thread Sanjay Patel (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15124647#comment-15124647
 ] 

Sanjay Patel commented on ATLAS-199:


Thanks [~shwethags]. I will keep this log file for tracking this issue, i did 
tried to re produce the issue but i am not able to re produce it. If issue 
occurs again than we will do a needful and resolve it.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch, 
> npm-install-failed.txt
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-28 Thread Sreenath Somarajapuram (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15121117#comment-15121117
 ] 

Sreenath Somarajapuram commented on ATLAS-199:
--

Thanks for the clarification [~shwethags]
Since a clean build is not expected every-time, the changes looks good to me.
That said, just want to remind that with the current setup some of the files 
deleted from the main codebase wont be deleted from the final package until a 
clean build (Eg: the template html files, images etc). And yes if required they 
can be cleaned from inside grunt.

Now to answer the issues:
1. versions changes are resolved automatically by npm bower installs. These 
commands must be anyway run by debug / prod builds ideally.
2. Totally agree to this point. When outside, we would have to add 
configurations to exclude these files in the pom.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-27 Thread Shwetha G S (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15120900#comment-15120900
 ] 

Shwetha G S commented on ATLAS-199:
---

[~sanjayp], I am ok with these changes. 

[~Sreenath], mvn clean is not required at each build, which means mvn clean is 
an option to do clean build if one wants to download fresh. mvn install will 
work just like downloading to dist(outside of target). The issues with 
downloading to dist(outside of target) are:
1. If someone wants to do fresh download(because the js dependency versions are 
changed etc), they have to know that dist is the target and have to delete it 
manually. Since target is the standard mvn destination directory, just a mvn 
clean will take care of it
2. The checked in files(which include js files etc) go through some standard 
checks like apache header etc. But the downloaded files don't need to go 
through these checks and they are exempted globally(as target is excluded). 
Now, dist needs to be manually excluded

Since npm, bower run in the context of mvn which is the main build tool and mvn 
is the only one that users use directly, we should stick to the mvn 
conventions. Makes sense?

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-27 Thread Sanjay Patel (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15119892#comment-15119892
 ] 

Sanjay Patel commented on ATLAS-199:


[~ssomarajapu...@hortonworks.com][~shwethags] Node modules and bower components 
are not downloaded every time, they will be downloaded when we will run *mvn* 
command with *clean* [mvn clean install] argument only. Previously we did kept 
node_modules and bower files out of the target directory but as those are moved 
in target directory as per implementation of ATLAS-159. 

Also, we are creating dist folder in target directory and then copy only dist 
directory content for making a war file. 

Yes grunt is build tool for JS but right now we are building whole  application 
with *mvn* command only, So downloaded files should be in target and they will 
be cleaned with *mvn clean* command.

Also we are not moving resources to target directory, we are just copying them 
for a while and they will be cleaned once *mvn* command run with clean argument 

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-25 Thread Sreenath Somarajapuram (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15116546#comment-15116546
 ] 

Sreenath Somarajapuram commented on ATLAS-199:
--

bq. generated files have to be in target. Else clean build doesn't make sense
- Cleaning of js files must be done by grunt

FYI, grunt is the js build tool and maven the java build tool. Its better to 
keep the expectation from them separate.

bq. It has created issues for us before. 
- What are these issues?

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-25 Thread Sreenath Somarajapuram (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15116524#comment-15116524
 ] 

Sreenath Somarajapuram commented on ATLAS-199:
--

[~shwethags]
1. As you know 'mvn clean' deletes the target, so with that goes all the 
npm/bower packages. All the packages are downloaded on each build which is 
un-necessary. And that means you must be online for a build.
bq. I have tested that
Not sure if you got what I meant. Please test with a fresh checkout.
2. As you know maven target is a place for the compiler files, just like we 
don't copy java source into target, guess its better to not copy js source 
also. ~ But this is up to you
3. Same as #2.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-25 Thread Sanjay Patel (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15115489#comment-15115489
 ] 

Sanjay Patel commented on ATLAS-199:


[~shwethags] dashboard/read me only contains steps for how to start development 
UI server. I think we should keep it as it can help to start UI server to non 
UI person too. Are you suggesting formatting changes in to it or more info ?. 
Can we track read me updates as different JIRA. I think patch for this issue 
does not contain any dashboard/readme updates.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-25 Thread Shwetha G S (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15115016#comment-15115016
 ] 

Shwetha G S commented on ATLAS-199:
---

[~Sreenath], the generated files have to be in target. Else clean build doesn't 
make sense and it has created issues for us before. 
1. Since the resources are copied to target, duplicate download doesn't happen. 
I have tested that
2. Target is for generated files. There is no reason to maintain it clean
3. Yes, I wanted to check with you if there is any way to avoid it with target 
being the directory for generated/downloaded files. If this is the only way to 
ensure 1 and 2 above, its ok to copy resources

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-25 Thread Sreenath Somarajapuram (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15115009#comment-15115009
 ] 

Sreenath Somarajapuram commented on ATLAS-199:
--

Its better to build things into dist folder, and let maven-war-plugin package 
the files from dist.

That would ensure:
1. npm and bower dependencies are downloaded just once, and not in all build.
2. Target stays clean without json and other build related files
3. Need-not copy the resources

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-24 Thread Shwetha G S (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15114797#comment-15114797
 ] 

Shwetha G S commented on ATLAS-199:
---

Can you remove (if not required) or update dashboard/README.md?

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2016-01-22 Thread Erik Bergenholtz (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15112567#comment-15112567
 ] 

Erik Bergenholtz commented on ATLAS-199:


+1 Applied Patch; tests run without issues.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch, ATLAS-199-v1.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-12-10 Thread Sanjay Patel (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15052070#comment-15052070
 ] 

Sanjay Patel commented on ATLAS-199:


[~suma.shivaprasad] We did tried following solutions: 

According to 
http://maven.apache.org/guides/introduction/introduction-to-profiles.html we 
can not use ${project.build.directory} in / tag, 
here we have to hard code target path.

So for that i have tried following solutions:
1. Directly hard coding target path
2. I have used ${basedir} - this also not worked as we can't use 
${project.build.directory} 
3. I had tried by defining property in root pom.xml but in this also we have to 
use ${property} which will not work again as per 
http://maven.apache.org/guides/introduction/introduction-to-profiles.html 

In first solution everything works fine but after mvn clean install when I am 
doing mvn clean package -Pdist at that time the 
dashboard module does fails with error that it can not find local node and at 
this time it was executing profile with id grunt-task.
this happens because mvn clean is not completed for dashboard module and it is 
able to find node, node_modules and dist/lib directories in dashboard/target 
folder so it is not activating profiles with ids install-node, 
install-node_modules and bower-install. Now when maven execution comes to 
execute profile with ID grunt-task at that time mvn clean for dashboard module 
is completed and it can't able to find 
node as its profile is not executed.
Second and Third option also not working as per 
http://maven.apache.org/guides/introduction/introduction-to-profiles.html


Other possible solutions  in progress: 

1. Activate profiles using environment variables
2. Plugin execution() as per phase
3. Use ant-run plugin and define a task/target 



> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Sanjay Patel
>Priority: Critical
>  Labels: ATLAS-UI-BUGS
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


RE: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-11-19 Thread sonali.parthasarathy
Thanks Hemanth!

I can access the nightly build. Downloading it now.

Thanks!
Sonali

-Original Message-
From: Hemanth Yamijala [mailto:yhema...@gmail.com]
Sent: November 18, 2015 9:20 PM
To: dev@atlas.incubator.apache.org
Subject: Re: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

It appears you can download the binary bits that come off master from the 
nightly builds that are published here:
https://builds.apache.org/job/apache-atlas-nightly/ - Can you check if this is 
accessible for you?

Thanks
Hemanth

On Thu, Nov 19, 2015 at 10:18 AM, Hemanth Yamijala 
wrote:

> Sonali,
>
> ALTAS-159 & ATLAS-199 are merged with the master branch. However, the
> status of ATLAS-199 is still open, so I assume some work is still
> pending on it (which might also be why you are still seeing the
> error). The only release of the project we’ve had is the 0.5 version,
> and for it I only see the source tarballs here (
> http://www.eu.apache.org/dist/incubator/atlas/0.5.0-incubating/). Will
> check and get back to you if there is a better option for you to get
> started.
>
> In the meantime, can you please update ATLAS-199 with the errors you
> observed when building (- from master branch, I assume?). Any log etc
> that you have may help in getting to resolution.
>
> Thanks
>
> Hemanth
>
> On Thu, Nov 19, 2015 at 4:31 AM, 
> wrote:
>
>> Hi Team,
>>
>> Is there a pre-compiled version of atlas I can use in the meantime?
>>
>> Thanks,
>> Sonali
>>
>> -Original Message-
>> From: Parthasarathy, Sonali
>> Sent: November 17, 2015 4:39 PM
>> To: dev@atlas.incubator.apache.org
>> Subject: RE: [jira] [Commented] (ATLAS-199) webapp build fails (grunt
>> +
>> tests)
>>
>> Hi!
>>
>> I cloned the repo from git today and tried compiling atlas, but I get
>> the same 'grunt bower --no-color' failed error. Have the JIRAs 159
>> and 199 been merged to the git code? Or Do I have to apply the patch 
>> separately?
>>
>> Thanks,
>> Sonali
>>
>> -Original Message-
>> From: Darshan Kumar (JIRA) [mailto:j...@apache.org]
>> Sent: October 26, 2015 5:26 AM
>> To: dev@atlas.incubator.apache.org
>> Subject: [jira] [Commented] (ATLAS-199) webapp build fails (grunt +
>> tests)
>>
>>
>> [
>> https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.ji
>> ra.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=149
>> 74130#comment-14974130
>> ]
>>
>> Darshan Kumar commented on ATLAS-199:
>> -
>>
>> Sure will look into it Thanks [~suma.shivaprasad]
>>
>> > webapp build fails (grunt + tests)
>> > --
>> >
>> > Key: ATLAS-199
>> > URL: https://issues.apache.org/jira/browse/ATLAS-199
>> > Project: Atlas
>> >  Issue Type: Bug
>> >Affects Versions: 0.6-incubating
>> >Reporter: Erik Bergenholtz
>> >Assignee: Darshan Kumar
>> >Priority: Critical
>> >  Labels: patch-available
>> > Fix For: 0.6-incubating
>> >
>> > Attachments: ATLAS-199-v0.patch
>> >
>> >
>> > When building Atlas webapp, I see the following issues:
>> > mvn clean install:
>> > {code}
>> > [INFO] Running 'grunt bower --no-color' in
>> > /Users/ebergenholtz/git3/incubator-atlas/dashboard
>> > [INFO]
>> > ---
>> > ---
>> > --
>> > [INFO] BUILD FAILURE
>> > [INFO]
>> > ---
>> > ---
>> > --
>> > [INFO] Total time: 34.282 s
>> > [INFO] Finished at: 2015-09-30T13:55:30-05:00 [INFO] Final Memory:
>> > 35M/420M [INFO]
>> > ---
>> > ---
>> > -- [ERROR] Failed to execute goal
>> > com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install
>> > bower) on project atlas-webapp: Failed to run task: 'grunt bower 
>> > --no-color'
>> > failed. java.io.IOException: Cannot run program
>> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in
>> directory "/Users/ebergenholtz/git3/incubator-atlas/dashboard"):
>> error=2, No such file or directory ->

Re: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-11-18 Thread Hemanth Yamijala
It appears you can download the binary bits that come off master from the
nightly builds that are published here:
https://builds.apache.org/job/apache-atlas-nightly/ - Can you check if this
is accessible for you?

Thanks
Hemanth

On Thu, Nov 19, 2015 at 10:18 AM, Hemanth Yamijala 
wrote:

> Sonali,
>
> ALTAS-159 & ATLAS-199 are merged with the master branch. However, the
> status of ATLAS-199 is still open, so I assume some work is still pending
> on it (which might also be why you are still seeing the error). The only
> release of the project we’ve had is the 0.5 version, and for it I only see
> the source tarballs here (
> http://www.eu.apache.org/dist/incubator/atlas/0.5.0-incubating/). Will
> check and get back to you if there is a better option for you to get
> started.
>
> In the meantime, can you please update ATLAS-199 with the errors you
> observed when building (- from master branch, I assume?). Any log etc that
> you have may help in getting to resolution.
>
> Thanks
>
> Hemanth
>
> On Thu, Nov 19, 2015 at 4:31 AM, 
> wrote:
>
>> Hi Team,
>>
>> Is there a pre-compiled version of atlas I can use in the meantime?
>>
>> Thanks,
>> Sonali
>>
>> -Original Message-
>> From: Parthasarathy, Sonali
>> Sent: November 17, 2015 4:39 PM
>> To: dev@atlas.incubator.apache.org
>> Subject: RE: [jira] [Commented] (ATLAS-199) webapp build fails (grunt +
>> tests)
>>
>> Hi!
>>
>> I cloned the repo from git today and tried compiling atlas, but I get the
>> same 'grunt bower --no-color' failed error. Have the JIRAs 159 and 199 been
>> merged to the git code? Or Do I have to apply the patch separately?
>>
>> Thanks,
>> Sonali
>>
>> -Original Message-
>> From: Darshan Kumar (JIRA) [mailto:j...@apache.org]
>> Sent: October 26, 2015 5:26 AM
>> To: dev@atlas.incubator.apache.org
>> Subject: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)
>>
>>
>> [
>> https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14974130#comment-14974130
>> ]
>>
>> Darshan Kumar commented on ATLAS-199:
>> -
>>
>> Sure will look into it Thanks [~suma.shivaprasad]
>>
>> > webapp build fails (grunt + tests)
>> > --
>> >
>> > Key: ATLAS-199
>> > URL: https://issues.apache.org/jira/browse/ATLAS-199
>> > Project: Atlas
>> >  Issue Type: Bug
>> >Affects Versions: 0.6-incubating
>> >Reporter: Erik Bergenholtz
>> >Assignee: Darshan Kumar
>> >Priority: Critical
>> >  Labels: patch-available
>> > Fix For: 0.6-incubating
>> >
>> > Attachments: ATLAS-199-v0.patch
>> >
>> >
>> > When building Atlas webapp, I see the following issues:
>> > mvn clean install:
>> > {code}
>> > [INFO] Running 'grunt bower --no-color' in
>> > /Users/ebergenholtz/git3/incubator-atlas/dashboard
>> > [INFO]
>> > --
>> > --
>> > [INFO] BUILD FAILURE
>> > [INFO]
>> > --
>> > --
>> > [INFO] Total time: 34.282 s
>> > [INFO] Finished at: 2015-09-30T13:55:30-05:00 [INFO] Final Memory:
>> > 35M/420M [INFO]
>> > --
>> > -- [ERROR] Failed to execute goal
>> > com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower)
>> > on project atlas-webapp: Failed to run task: 'grunt bower --no-color'
>> > failed. java.io.IOException: Cannot run program
>> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in
>> directory "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2,
>> No such file or directory -> [Help 1] {code} Also, if I bypass the grunt
>> task some of the tests fail.
>>
>>
>>
>> --
>> This message was sent by Atlassian JIRA
>> (v6.3.4#6332)
>>
>> 
>>
>> This message is for the designated recipient only and may contain
>> privileged, proprietary, or otherwise confidential information. If you have
>> received it in error, please notify the sender immediately and delete the
>> original. Any other use of the e-mail by you is prohibited. Where allowed
>> by local law, electronic communications with Accenture and its affiliates,
>> including e-mail and instant messaging (including content), may be scanned
>> by our systems for the purposes of information security and assessment of
>> internal compliance with Accenture policy.
>>
>> __
>>
>> www.accenture.com
>>
>
>


Re: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-11-18 Thread Hemanth Yamijala
Sonali,

ALTAS-159 & ATLAS-199 are merged with the master branch. However, the
status of ATLAS-199 is still open, so I assume some work is still pending
on it (which might also be why you are still seeing the error). The only
release of the project we’ve had is the 0.5 version, and for it I only see
the source tarballs here (
http://www.eu.apache.org/dist/incubator/atlas/0.5.0-incubating/). Will
check and get back to you if there is a better option for you to get
started.

In the meantime, can you please update ATLAS-199 with the errors you
observed when building (- from master branch, I assume?). Any log etc that
you have may help in getting to resolution.

Thanks

Hemanth

On Thu, Nov 19, 2015 at 4:31 AM,  wrote:

> Hi Team,
>
> Is there a pre-compiled version of atlas I can use in the meantime?
>
> Thanks,
> Sonali
>
> -Original Message-
> From: Parthasarathy, Sonali
> Sent: November 17, 2015 4:39 PM
> To: dev@atlas.incubator.apache.org
> Subject: RE: [jira] [Commented] (ATLAS-199) webapp build fails (grunt +
> tests)
>
> Hi!
>
> I cloned the repo from git today and tried compiling atlas, but I get the
> same 'grunt bower --no-color' failed error. Have the JIRAs 159 and 199 been
> merged to the git code? Or Do I have to apply the patch separately?
>
> Thanks,
> Sonali
>
> -Original Message-
> From: Darshan Kumar (JIRA) [mailto:j...@apache.org]
> Sent: October 26, 2015 5:26 AM
> To: dev@atlas.incubator.apache.org
> Subject: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)
>
>
> [
> https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14974130#comment-14974130
> ]
>
> Darshan Kumar commented on ATLAS-199:
> -
>
> Sure will look into it Thanks [~suma.shivaprasad]
>
> > webapp build fails (grunt + tests)
> > --
> >
> > Key: ATLAS-199
> > URL: https://issues.apache.org/jira/browse/ATLAS-199
> > Project: Atlas
> >  Issue Type: Bug
> >Affects Versions: 0.6-incubating
> >Reporter: Erik Bergenholtz
> >Assignee: Darshan Kumar
> >Priority: Critical
> >  Labels: patch-available
> > Fix For: 0.6-incubating
> >
> > Attachments: ATLAS-199-v0.patch
> >
> >
> > When building Atlas webapp, I see the following issues:
> > mvn clean install:
> > {code}
> > [INFO] Running 'grunt bower --no-color' in
> > /Users/ebergenholtz/git3/incubator-atlas/dashboard
> > [INFO]
> > --
> > --
> > [INFO] BUILD FAILURE
> > [INFO]
> > --
> > --
> > [INFO] Total time: 34.282 s
> > [INFO] Finished at: 2015-09-30T13:55:30-05:00 [INFO] Final Memory:
> > 35M/420M [INFO]
> > --
> > -- [ERROR] Failed to execute goal
> > com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower)
> > on project atlas-webapp: Failed to run task: 'grunt bower --no-color'
> > failed. java.io.IOException: Cannot run program
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in
> directory "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2,
> No such file or directory -> [Help 1] {code} Also, if I bypass the grunt
> task some of the tests fail.
>
>
>
> --
> This message was sent by Atlassian JIRA
> (v6.3.4#6332)
>
> 
>
> This message is for the designated recipient only and may contain
> privileged, proprietary, or otherwise confidential information. If you have
> received it in error, please notify the sender immediately and delete the
> original. Any other use of the e-mail by you is prohibited. Where allowed
> by local law, electronic communications with Accenture and its affiliates,
> including e-mail and instant messaging (including content), may be scanned
> by our systems for the purposes of information security and assessment of
> internal compliance with Accenture policy.
>
> __
>
> www.accenture.com
>


RE: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-11-18 Thread sonali.parthasarathy
Hi Team,

Is there a pre-compiled version of atlas I can use in the meantime?

Thanks,
Sonali

-Original Message-
From: Parthasarathy, Sonali 
Sent: November 17, 2015 4:39 PM
To: dev@atlas.incubator.apache.org
Subject: RE: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

Hi!

I cloned the repo from git today and tried compiling atlas, but I get the same 
'grunt bower --no-color' failed error. Have the JIRAs 159 and 199 been merged 
to the git code? Or Do I have to apply the patch separately?

Thanks,
Sonali

-Original Message-
From: Darshan Kumar (JIRA) [mailto:j...@apache.org]
Sent: October 26, 2015 5:26 AM
To: dev@atlas.incubator.apache.org
Subject: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)


[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14974130#comment-14974130
 ]

Darshan Kumar commented on ATLAS-199:
-

Sure will look into it Thanks [~suma.shivaprasad]

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO]
> --
> --
> [INFO] BUILD FAILURE
> [INFO]
> --
> --
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00 [INFO] Final Memory:
> 35M/420M [INFO]
> --
> -- [ERROR] Failed to execute goal
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) 
> on project atlas-webapp: Failed to run task: 'grunt bower --no-color'
> failed. java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1] {code} Also, if I bypass the grunt task some of the 
> tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)



This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise confidential information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the e-mail by you is prohibited. Where allowed by local law, electronic 
communications with Accenture and its affiliates, including e-mail and instant 
messaging (including content), may be scanned by our systems for the purposes 
of information security and assessment of internal compliance with Accenture 
policy.
__

www.accenture.com


RE: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-11-17 Thread sonali.parthasarathy
Hi!

I cloned the repo from git today and tried compiling atlas, but I get the same 
'grunt bower --no-color' failed error. Have the JIRAs 159 and 199 been merged 
to the git code? Or Do I have to apply the patch separately?

Thanks,
Sonali

-Original Message-
From: Darshan Kumar (JIRA) [mailto:j...@apache.org]
Sent: October 26, 2015 5:26 AM
To: dev@atlas.incubator.apache.org
Subject: [jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)


[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14974130#comment-14974130
 ]

Darshan Kumar commented on ATLAS-199:
-

Sure will look into it Thanks [~suma.shivaprasad]

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO]
> --
> --
> [INFO] BUILD FAILURE
> [INFO]
> --
> --
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00 [INFO] Final Memory:
> 35M/420M [INFO]
> --
> -- [ERROR] Failed to execute goal
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower)
> on project atlas-webapp: Failed to run task: 'grunt bower --no-color'
> failed. java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1] {code} Also, if I bypass the grunt task some of the 
> tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)



This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise confidential information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the e-mail by you is prohibited. Where allowed by local law, electronic 
communications with Accenture and its affiliates, including e-mail and instant 
messaging (including content), may be scanned by our systems for the purposes 
of information security and assessment of internal compliance with Accenture 
policy.
__

www.accenture.com


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-26 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14974130#comment-14974130
 ] 

Darshan Kumar commented on ATLAS-199:
-

Sure will look into it Thanks [~suma.shivaprasad]

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-26 Thread Suma Shivaprasad (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14974123#comment-14974123
 ] 

Suma Shivaprasad commented on ATLAS-199:


[~darshankhamar123] Can you pls raise a patch for the profile warnings?

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-26 Thread liutongfeng (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14974000#comment-14974000
 ] 

liutongfeng commented on ATLAS-199:
---

The failure is gone, but the profile's activation has warnings.

[WARNING] Some problems were encountered while building the effective model for 
org.apache.atlas:atlas-dashboard:war:0.6-incubating-SNAPSHOT
[WARNING] 'profiles.profile[install-node].activation.file.missing' Failed to 
interpolate file location ${project.build.directory}/node for profile 
install-node: ${project.*} expressions are not supported during profile 
activation @ org.apache.atlas:atlas-dashboard:[unknown-version], 
D:\vagrant\centos6.5\git\incubator-atlas\dashboard\pom.xml
[WARNING] 'profiles.profile[install-node_modules].activation.file.missing' 
Failed to interpolate file location ${project.build.directory}/node_modules for 
profile install-node_modules: ${project.*} expressions are not supported during 
profile activation @ org.apache.atlas:atlas-dashboard:[unknown-version], 
D:\vagrant\centos6.5\git\incubator-atlas\dashboard\pom.xml
[WARNING] 'profiles.profile[bower-install].activation.file.missing' Failed to 
interpolate file location ${project.build.directory}/dist/lib for profile 
bower-install: ${project.*} expressions are not supported during profile 
activation @ org.apache.atlas:atlas-dashboard:[unknown-version], 
D:\vagrant\centos6.5\git\incubator-atlas\dashboard\pom.xml

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-12 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14953119#comment-14953119
 ] 

Darshan Kumar commented on ATLAS-199:
-

This issue is solved with the dependent patch 
https://issues.apache.org/jira/browse/ATLAS-159 since the profile is removed  
and please verify. Thanks [~suma.shivaprasad]

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951697#comment-14951697
 ] 

Darshan Kumar commented on ATLAS-199:
-

sorry for the inconvenience sending multiple comments, caused due to my browser 
crashed.  

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951688#comment-14951688
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951692#comment-14951692
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951689#comment-14951689
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951695#comment-14951695
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951694#comment-14951694
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951687#comment-14951687
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951691#comment-14951691
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951690#comment-14951690
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951693#comment-14951693
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951686#comment-14951686
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951683#comment-14951683
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951681#comment-14951681
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951682#comment-14951682
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951685#comment-14951685
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951684#comment-14951684
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you so much [~ltfxyz]. will try it now.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread liutongfeng (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951678#comment-14951678
 ] 

liutongfeng commented on ATLAS-199:
---

Just delete the activation directory, and change to the same as the profile 
'grunt-task'.


diff --git a/webapp/pom.xml b/webapp/pom.xml
index 8992d42..a7cee9d 100755
--- a/webapp/pom.xml
+++ b/webapp/pom.xml
@@ -124,9 +124,9 @@
 
 bower-install
 
-
-target/dist/lib
-
+
+!disableGrunt
+
 
 
 

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951670#comment-14951670
 ] 

Darshan Kumar commented on ATLAS-199:
-

ok thanks and please let me know the changes made in pom file and this error is 
dependent on one of the patch that rectifies as well. Please let me know the 
changes that were made [~ltfxyz]

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-10 Thread liutongfeng (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951668#comment-14951668
 ] 

liutongfeng commented on ATLAS-199:
---

FYI, after modify the profile, I built several times, and have no failure.


mvn clean install
[INFO] Reactor Summary:
[INFO] 
[INFO] apache-atlas ... SUCCESS [ 26.501 s]
[INFO] Apache Atlas Typesystem  SUCCESS [01:02 min]
[INFO] Apache Atlas Common  SUCCESS [  7.354 s]
[INFO] Apache Atlas Client  SUCCESS [ 12.216 s]
[INFO] Apache Atlas Notification .. SUCCESS [ 16.365 s]
[INFO] Apache Atlas Repository  SUCCESS [04:25 min]
[INFO] Apache Atlas Web Application ... SUCCESS [02:47 min]
[INFO] Apache Atlas Documentation . SUCCESS [  5.703 s]
[INFO] Apache Atlas Hive Bridge ... SUCCESS [ 40.150 s]
[INFO] Apache Atlas Distribution .. SUCCESS [  2.025 s]
[INFO] 
[INFO] BUILD SUCCESS
[INFO] 
[INFO] Total time: 10:06 min


mvn clean package -Pdist
[INFO] Reactor Summary:
[INFO] 
[INFO] apache-atlas ... SUCCESS [ 24.507 s]
[INFO] Apache Atlas Typesystem  SUCCESS [ 49.559 s]
[INFO] Apache Atlas Common  SUCCESS [  2.959 s]
[INFO] Apache Atlas Client  SUCCESS [  5.184 s]
[INFO] Apache Atlas Notification .. SUCCESS [  9.327 s]
[INFO] Apache Atlas Repository  SUCCESS [04:02 min]
[INFO] Apache Atlas Web Application ... SUCCESS [ 34.718 s]
[INFO] Apache Atlas Documentation . SUCCESS [  6.268 s]
[INFO] Apache Atlas Hive Bridge ... SUCCESS [ 10.530 s]
[INFO] Apache Atlas Distribution .. SUCCESS [ 32.620 s]
[INFO] 
[INFO] BUILD SUCCESS
[INFO] 
[INFO] Total time: 06:59 min

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-09 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951619#comment-14951619
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thanks, I see the log and I find this command --  export 'MAVEN_OPTS=-Xmx4096m 
-XX:MaxPermSize=1024m -Dfile.encoding=UTF-8 -noverify

I will run the build and update you. Thank you

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-09 Thread liutongfeng (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951618#comment-14951618
 ] 

liutongfeng commented on ATLAS-199:
---

I got the same buid failure, one reason for this is:
the following profile 'bower-install' relies on the directory 
'target/dist/lib', when mvn build starts, if the directory is already exists,
then this profile cannot be activated, but using 'mvn clean package -Pdist' to 
build, the directory 'target' will be removed,
so when the following profile 'grunt-task' is activated, it will be failed.
So I guess, those profiles in 'webapp' cause the build process unstable, should 
be modified.


bower-install


target/dist/lib





com.github.eirslett
frontend-maven-plugin


install bower

grunt


bower









> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-09 Thread Suma Shivaprasad (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951604#comment-14951604
 ] 

Suma Shivaprasad commented on ATLAS-199:


[~Darshan Kumar] Refer 
https://builds.apache.org/job/apache-atlas-nightly/87/console for build 
failures and command that is run

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-09 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14950786#comment-14950786
 ] 

Darshan Kumar commented on ATLAS-199:
-

Result of this command :  mvn findbugs:gui
[INFO] 
[INFO] apache-atlas ... SUCCESS [19:10 min]
[INFO] Apache Atlas Typesystem  SUCCESS [02:33 min]
[INFO] Apache Atlas Common  SUCCESS [04:03 min]
[INFO] Apache Atlas Client  SUCCESS [ 35.076 s]
[INFO] Apache Atlas Notification .. SUCCESS [ 24.271 s]
[INFO] Apache Atlas Repository  SUCCESS [02:52 min]
[INFO] Apache Atlas Web Application ... SUCCESS [01:34 min]
[INFO] Apache Atlas Documentation . SUCCESS [01:36 min]
[INFO] Apache Atlas Hive Bridge ... SUCCESS [ 59.990 s]
[INFO] Apache Atlas Distribution .. SUCCESS [02:06 min]
[INFO] 
[INFO] BUILD SUCCESS
[INFO] 
[INFO] Total time: 36:06 min
[INFO] Finished at: 2015-10-09T22:37:16+05:30
[INFO] Final Memory: 32M/68M
[INFO] 

[~suma.shivaprasad] I get the GUI with zero bugs in the folder and I close the 
GUI firebug,after which I see success. Please let me know.

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-09 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14950657#comment-14950657
 ] 

Darshan Kumar commented on ATLAS-199:
-

1. result of the command : export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=256m" 
&& mvn install -DskipTests -DskipCheck=true

[INFO] 
[INFO] Reactor Summary:
[INFO] 
[INFO] apache-atlas ... SUCCESS [ 37.890 s]
[INFO] Apache Atlas Typesystem  SUCCESS [01:12 min]
[INFO] Apache Atlas Common  SUCCESS [  3.860 s]
[INFO] Apache Atlas Client  SUCCESS [ 15.169 s]
[INFO] Apache Atlas Notification .. SUCCESS [  6.924 s]
[INFO] Apache Atlas Repository  SUCCESS [01:57 min]
[INFO] Apache Atlas Web Application ... SUCCESS [05:56 min]
[INFO] Apache Atlas Documentation . SUCCESS [ 15.785 s]
[INFO] Apache Atlas Hive Bridge ... SUCCESS [ 41.435 s]
[INFO] Apache Atlas Distribution .. SUCCESS [  6.705 s]
[INFO] 
[INFO] BUILD SUCCESS
[INFO] 
[INFO] Total time: 11:20 min
[INFO] Finished at: 2015-10-09T21:48:51+05:30
[INFO] Final Memory: 122M/694M
[INFO] 

2. Result of the command :  mvn package -Pdist -DskipTests -DskipCheck=true 


[INFO] Building tar: 
/Users/darshankumar/HDPDGI-166/oct9/incubator-atlas/distro/target/apache-atlas-0.6-incubating-SNAPSHOT-sources.tar.gz
[INFO] 
[INFO] Reactor Summary:
[INFO] 
[INFO] apache-atlas ... SUCCESS [ 45.119 s]
[INFO] Apache Atlas Typesystem  SUCCESS [ 53.167 s]
[INFO] Apache Atlas Common  SUCCESS [  3.194 s]
[INFO] Apache Atlas Client  SUCCESS [  7.201 s]
[INFO] Apache Atlas Notification .. SUCCESS [  3.263 s]
[INFO] Apache Atlas Repository  SUCCESS [01:58 min]
[INFO] Apache Atlas Web Application ... SUCCESS [01:31 min]
[INFO] Apache Atlas Documentation . SUCCESS [ 13.551 s]
[INFO] Apache Atlas Hive Bridge ... SUCCESS [ 22.591 s]
[INFO] Apache Atlas Distribution .. SUCCESS [01:21 min]
[INFO] 
[INFO] BUILD SUCCESS
[INFO] 
[INFO] Total time: 07:26 min
[INFO] Finished at: 2015-10-09T21:56:50+05:30
[INFO] Final Memory: 79M/653M
[INFO] 

[~suma.shivaprasad] I am able to get Build success for the above command and 
please verify. Thanks  

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-09 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14950512#comment-14950512
 ] 

Darshan Kumar commented on ATLAS-199:
-

ok will look into it. Thanks 

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-08 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14949241#comment-14949241
 ] 

Darshan Kumar commented on ATLAS-199:
-

ok I will also check. Thanks  [~shwethags]

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-08 Thread Shwetha G S (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14949233#comment-14949233
 ] 

Shwetha G S commented on ATLAS-199:
---

[~darshankumar89], the build still fails sometimes

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-06 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14945172#comment-14945172
 ] 

Darshan Kumar commented on ATLAS-199:
-

Thank you

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-199) webapp build fails (grunt + tests)

2015-10-05 Thread Suma Shivaprasad (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14944576#comment-14944576
 ] 

Suma Shivaprasad commented on ATLAS-199:


+1. Tests pass with the patch

[INFO] 
[INFO] Reactor Summary:
[INFO]
[INFO] apache-atlas ... SUCCESS [  4.533 s]
[INFO] Apache Atlas Typesystem  SUCCESS [ 55.940 s]
[INFO] Apache Atlas Common  SUCCESS [  5.103 s]
[INFO] Apache Atlas Client  SUCCESS [ 11.080 s]
[INFO] Apache Atlas Notification .. SUCCESS [ 12.205 s]
[INFO] Apache Atlas Repository  SUCCESS [03:55 min]
[INFO] Apache Atlas Web Application ... SUCCESS [03:45 min]
[INFO] Apache Atlas Documentation . SUCCESS [  3.641 s]
[INFO] Apache Atlas Hive Bridge ... SUCCESS [01:14 min]
[INFO] Apache Atlas Distribution .. SUCCESS [  1.681 s]
[INFO] 
[INFO] BUILD SUCCESS
[INFO] 
[INFO] Total time: 10:31 min
[INFO] Finished at: 2015-10-06T12:06:26+05:30
[INFO] Final Memory: 185M/707M
[INFO] 

> webapp build fails (grunt + tests)
> --
>
> Key: ATLAS-199
> URL: https://issues.apache.org/jira/browse/ATLAS-199
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Erik Bergenholtz
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: trunk
>
> Attachments: ATLAS-199-v0.patch
>
>
> When building Atlas webapp, I see the following issues:
> mvn clean install:
> {code}
> [INFO] Running 'grunt bower --no-color' in 
> /Users/ebergenholtz/git3/incubator-atlas/dashboard
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 34.282 s
> [INFO] Finished at: 2015-09-30T13:55:30-05:00
> [INFO] Final Memory: 35M/420M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> com.github.eirslett:frontend-maven-plugin:0.0.23:grunt (install bower) on 
> project atlas-webapp: Failed to run task: 'grunt bower --no-color' failed. 
> java.io.IOException: Cannot run program 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard/node/node" (in directory 
> "/Users/ebergenholtz/git3/incubator-atlas/dashboard"): error=2, No such file 
> or directory -> [Help 1]
> {code}
> Also, if I bypass the grunt task some of the tests fail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)