Re: [JBoss-user] where to place libraries while developing

2003-08-27 Thread Stephane Nicoll
Hello, You can, for instance create a directory lib in your ear and put your jar files there. Then in the META-INF of your jar (MyApp-ejb.jar) you can add a classpath ref that points to lib/MyApp-lib.jar) will be loaded by the JAR deployer Regards, Stéphane On Wed, 2003-08-27 at 11:03, M

[JBoss-user] where to place libraries while developing

2003-08-27 Thread Milen Dyankov
Hi, I have "MyApp-ejb.jar" containing my module and "MyApp-lib.jar" with library classes used by the application. The reason I have this separated is that "MyApp-lib.jar" is also needed by the client application. When I put "MyApp-lib.jar" in "/jboss/server/default/lib" everything works just fin