Including tld's in my jar file

2005-12-05 Thread Jakob Vad Nielsen
Hi, I try to use maven for building a jar package. When building with ant I include all the tld-files in the project into META-INF with the ant target: metainf dir=${tlddir} include name=*.tld/ /metainf Maven only includes the class files from the project. Is there a way to make maven 1.x

Re: Including tld's in my jar file

2005-12-05 Thread Doug Douglass
Jakob, Presuming your TLDs are in src/main/tld, you can add the following to your POM build section: resources resource directorysrc/main/tld/directory targetPathMETA-INF/targetPath /resource /resources See http://maven.apache.org/maven-1.x/using/resources.html for more info