Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I configure my pom to have a folder act as the JavaScript build path?

I would like to have developers import the project into eclipse and automatically have the JavaScript root folder in the eclipse build path so that auto-complete and other JavaScript support works.

share|improve this question

1 Answer

Javascript is a interpreted language, you don't have to build or compile it.

share|improve this answer
Sure, but what I need is a way to make the JS root folder act like an eclipse web project. In eclipse web projects, you get JavaScript code assist and it also looks through the other files in the path for functions and documentation related to those functions. That's what I was trying to get working. I don't need to compile them. I use YUICompressor for validating and rolling up the files, but that's a simple task. Preferably, I don't have to do this by making a separate JS project. – colondotcom Feb 10 '11 at 1:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.