Hi, I'm working on a project that requires me to replace Tomcat's SessionManager. I've created a src/main/webapp/META-INF/context.xml (it defines the custom Manager) and I've edited my Maven pom file to include the requires JARs in the tomcat6-maven-plugin's dependencies section (see below) but I'm not sure if that actually refers to $CATALINA/lib or if these dependencies are for something else. It's failing with a ClassNotFoundException (it can't find the Manager class as defined in context.xml).
Thanks, James <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat6-maven-plugin</artifactId> <version>2.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>spy</groupId> <artifactId>spymemcached</artifactId> <version>2.8.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>de.javakaffee.msm</groupId> <artifactId>memcached-session-manager-tc6</artifactId> <version>1.6.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>de.javakaffee.msm</groupId> <artifactId>msm-kryo-serializer</artifactId> <version>1.6.0</version> <scope>runtime</scope> </dependency> </dependencies> </plugin> --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org