My Eclipse project is suddenly no longer deploying properly. I can\'t trace it to any particular change I\'ve made to the environment.
I have tested with multiple s
Tomcat usually does not add classes in src/test/java to the classpath. They are missing if you run tomcat in scope test. To order tomcat to respect classes in test, use -Dmaven.tomcat.useTestClasspath=true or add
src/test/java
-Dmaven.tomcat.useTestClasspath=true
true
To your pom.xml.
pom.xml