Re: Custom ant task and resources

2005-10-28 Thread Dale Anson
Johannes, I've written a classloader that handles that specific situation. You can view the source at: http://antelope.tigris.org/source/browse/antelope/src/ise/antelope/launcher/SubJarClassLoader.java?rev=1.1&view=markup This code is distributed with Antelope, the source is available at htt

Re: Custom ant task and resources

2005-10-27 Thread Antoine Levy-Lambert
Johannes Rieken wrote: >Hi everyone! > >I 've written a custom ant task which I deploy as a jar file. This jar file >contains another jar file which is read during task execution. >I'm using the static method "ClassLoader.getSystemResource(String):URL" to >access resources in jar file which usu

Custom ant task and resources

2005-10-27 Thread Johannes Rieken
Hi everyone! I 've written a custom ant task which I deploy as a jar file. This jar file contains another jar file which is read during task execution. I'm using the static method "ClassLoader.getSystemResource(String):URL" to access resources in jar file which usually works fine. However call