--- Martin Ficker <[EMAIL PROTECTED]> wrote: > Sorry, > I have to push this again. Is the question to > stupid? To difficult? No > one any idea?
Martin: The deprecation notice in the manual for <jlink> says: Use the zipfileset and zipgroupfileset attributes of the Jar task or Zip task instead. Actually, zipfileset and zipgroupfileset are not "attributes" per se, and this may account at least in part for your confusion. These are among the nested elements permitted within zip/jar/war to specify resources to include. Further, in Ant 1.7+ you can specify <path>s and other resource collections. I hope this assists you in figuring out what resources in modern Ant can help you escape the JLink task. -Matt > > M. > > Martin Ficker wrote: > > Hi, > > > > I've got a question about the Jar task. > > The JLink task was able to merge the content of > jarfiles from > > different, totally unrelated places, defined in a > PATH Structure. > > "JLink" is deprecated since Ant 1.5, so there > must be a solution > > without using it. But I'm just not able to find > it. Could you please > > help me? > > Here is my example code, using JLink. Note that > this example is > > simpliefied. In "Real World" the definition of > "jarsindifferentplaces" > > would be in a project buildfile, while > > the JLink would be in a common build-file, > imported by many Projects. > > > > <project name="JarTest" default="testJar" > basedir="."> > > <target name="testJar">â > > <path id="jarsindifferentplaces"> > > <filelist dir="D:\temp"> > > <file name="two.jar"/> > > </filelist> > > <filelist dir="C:\temp"> > > <file name="One.jar"/> > > </filelist> > > </path> > > > > <!-- JLink allows reference to path structure! --> > > <jlink compress="false" > outfile="test.jar"> > > <mergefiles > refid="jarsindifferentplaces"/> > > </jlink> > > </target> > > </project> > > > > Thanks in advance, > > > > Best Regards, > > > > Martin > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: > [EMAIL PROTECTED] > > For additional commands, e-mail: > [EMAIL PROTECTED] > > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > > ____________________________________________________________________________________ Got a little couch potato? Check out fun summer activities for kids. http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+kids&cs=bz --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]