Kai,
Have you tried to do the same without Maven? Just create similar
projects using WTP wizards and see if it works.
regards,
Eugene
Kai Ulrich wrote:
Hey,
I want to use the wtp-integration of the m2eclipse plug in for an
exiting maven project.
- A tomcat 6.0 ist integrated as a server.
- After checking out the projects from the svn there is no problem to
run the goles on all projects.
- I can run the "web-project" by "Run As -> Run On Server"
- Changes of classes in"web-project" are reloded automaticaly.
But not (and that is my Problem): changes in "project" are reloded
automaticaly.
My question.
Is there a posibility to reload changes in "project" without a new
build and restarting tomcat ?
Regardes Kai
I do have following maven project structure.
|- master
| - pom.xml
|
|- project
| - pom.xml
|
|- web-project
- pom.xml
The poms:
master/pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>project</groupId>
<artifactId>master</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<modules>
<module>../project</module>
<module>../web-project</module>
</modules>
</project>
project/pom.xml:
<?xml version="1.0" encoding="UTF-8"?><project>
<modelVersion>4.0.0</modelVersion>
<groupId>project</groupId>
<artifactId>project</artifactId>
<version>1.0</version>
</project>
web-project/pom.xml:
<?xml version="1.0" encoding="UTF-8"?><project>
<modelVersion>4.0.0</modelVersion>
<groupId>project</groupId>
<artifactId>web-project</artifactId>
<version>1.0</version>
[...]
<dependencies>
<dependency>
<groupId>project</groupId>
<artifactId>project</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
[...]
</project>
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email