I tried to use maven eclipse:eclipse with -Dwtpversion=2.0 for the first time in a long time today, and I'm getting nowhere. All the builders are in the .project, but all eclipse ever does is complain about wtp metadata needing to be migrated; the project never shows up as a web project at all. Anyone got a recipe?
...
Hey,
I have an issue, I've created a Maved project with Eclipse, and committed into a SVN repository. from here I tried two approaches:
Import the project into NetBeans from the folder of Eclipse workspace.
Check the project out of the repository into NetBeans.
in both cases, once I clean and build the project, NetBeans deletes the ...
I have
Eclipse 3.5.2
Scala 2.8.0 final (inc latest Scala IDE for Eclipse)
Maven integration for Eclipse
Maven 2.2.1
.project and .classpath files generated by maven-eclipse-plugin
I'm using Scala to write Specs BDD tests for my Java code and the setup above is working very nicely so far. However, I have one puzzling problem and I wou...
When I generate eclipse artifacts, Eclipse shows the source folder in this order.
src/test/java
src/test/resources
src/main/java
src/main/resources
I would prefer,
src/main/java
src/main/resources
src/test/java
src/test/resources
Thanks in advance!
...
With the maven eclipse plugin, I can configure checkstyle or sonar configurations by adding the necessary invocations to the pom.xml and calling "mvn eclipse:eclipse" to create the project configuration.
Some members of my team want to just use "Import Maven project" and therefore don't get the benefits of the project preconfigurations....
Hi,
I wonder if anyone have come across a problem with that when using maven-eclipse-plugin together with velocity plugin for Mave generate a random dependency which causes build error because of missing the artifacts of some irrelevant modules within the build?
I could not find any explicit clue of how that problem causing dependenc...
I'm executing the following command,
mvn org.apache.maven.plugins:maven-eclipse-plugin:2.6:clean \
org.apache.maven.plugins:maven-eclipse-plugin:2.6:eclipse
My all the dependencies are coming in classpath but AspectJ is not added to the classpath. I have them declared in pom.xml dependencies list
Where as it is working if I use ...