On Wed, 2003-07-16 at 20:53, did wrote: > I trieds, using b10, to put my tld into src/conf/META-INF/ > > However the tld is not included into the Jar. > > I use in my project.xml the following setup: > <!-- build information for the project --> > <build> > <sourceDirectory>src/main/java</sourceDirectory> > <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory> > > <unitTest> > <resources> > <resource> > <directory>src/test/java</directory> > <includes><include>**/*</include> </includes> > <excludes><exclude>**/*.java</exclude> </excludes> > </resource> > </resources> > <includes> > <include>**/*Test.java</include> > </includes> > </unitTest> > > <resources> > <resource> > <directory>src/conf</directory> > <includes> > <include>*.properties</include> > <include>*.tld</include>
If the tld files are not right in src/conf then you need to use **/*.properties and **/*.tld so that nested directories will be searched. > </includes> > </resource> > </resources> > </build> > > > But got no tld on my jar. Only: > 0 Thu Jul 17 02:51:18 CEST 2003 META-INF/ > 430 Thu Jul 17 02:51:16 CEST 2003 META-INF/MANIFEST.MF > 0 Thu Jul 10 22:22:14 CEST 2003 META-INF/LICENSE.txt > 279 Thu Jul 17 02:51:16 CEST 2003 META-INF/INDEX.LIST > > Any idea? > > -- > jvz. > > Jason van Zyl > [EMAIL PROTECTED] > http://tambora.zenplex.org > > In short, man creates for himself a new religion of a rational > and technical order to justify his work and to be justified in it. > > -- Jacques Ellul, The Technological Society --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
