On Sun, Nov 29, 2009 at 2:24 PM, Koxkorrita <[email protected]> wrote:
> i must to exclude from my war file (webservice) the spring.jar file > for this purpose i make this: ... > <exclusion> > <groupId>org.springframework</groupId> > <artifactId>spring-core</artifactId> > </exclusion> You're saying "spring" shows up in your lib directory, but you're excluding "spring-core" which is not the same thing. Try the dependency with <artifactId>spring</artifactId> instead. Also make sure that you run 'mvn clean' to delete anything that's left over from a previous build. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
