Re: T5 IoC remote module def'n problem.

2007-04-08 Thread Bill Holloway
Well, actually, the WEB-INF/lib thing was the problem. Now in src/main/resources. Am using mvn. bill On 4/5/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: Looks good to me; somehow you must have the JAR file on the classpath twice. Can we see your Ant build.xml (you obviously aren't using M

Re: T5 IoC remote module def'n problem.

2007-04-04 Thread Howard Lewis Ship
Looks good to me; somehow you must have the JAR file on the classpath twice. Can we see your Ant build.xml (you obviously aren't using Maven). In T4 I've seen a lot of people set up an eclipse project and store dependencies in src/context/WEB-INF/lib AND add them to the Eclipse project build path

T5 IoC remote module def'n problem.

2007-04-04 Thread Bill Holloway
In a separate Eclipse project from my T5 project, I write a service called MyService Interface: package org.example.mylib; public interface MyService { public String doSomething (); } Impl: package org.example.mylib; public class MyServiceImpl implements MyService {