I'm developing a web-project with jsp and JAX-RS. If I run buildr eclipse
, buildr generates a simple Java project. How can I instruct buildr to generate an eclipse project facet including "Dynamic Web Module", "Java", "JavaScript", and "JAX-RS"? Indeed, "Dynamic Web Module" and "Java" would be sufficient for me.
Asked
Active
Viewed 265 times
1

koppor
- 19,079
- 15
- 119
- 161
1 Answers
2
This is not supported by Buildr. Buildr generates a simple .project indeed, but cannot go further. There are many project natures out there, since each Eclipse plugins tend to provide their own.
You are better off changing the .project and committing it.

Antoine Toulme
- 937
- 4
- 15
-
How can I add new jars added to the dependencies to the classpath? I assume, I have to do that manually, don't I? – koppor Apr 01 '12 at 11:57
-
Just instruct Buildr what to compile with, using compile.with. – Antoine Toulme Apr 01 '12 at 22:02
-
I like eclipse's integrated tooling. Currently, I use builder only to fetch the dependencies and using the integrated eclipse toolchain and integrated tomcat. Instant deployment really works here. ;) – koppor Apr 02 '12 at 12:14