vote up 2 vote down star
2

Hi,

I've got an ant jar task:

<target name="jar">
    <jar destfile="${generated.jars.dir}/hello-${environment}.jar">
    	<fileset dir="${generated.classes.dir}"/>
    	<fileset dir="${environment.dir}/${environment}" includes="config.xml"/>
    </jar>
</target>

How can I force the config.xml file to be pushed to a specific directory in the jar rather than at the root level, say in /database/config.xml or something like that...

PS: The reason for doing this is that I can have a hello-local.jar, hello-dev.jar, hello-qa.jar, etc.

flag

2 Answers

vote up 4 vote down check

use zipfileset like this:

    <jar destfile="${generated.jars.dir}/hello-${environment}.jar">
        <fileset dir="${generated.classes.dir}"/>
        <zipfileset dir="${environment.dir}/${environment}" 
                includes="config.xml" fullpath="database/config.xml"/>
    </jar>
link|flag
vote up 2 vote down

You want zipfileset:

<zipfileset dir="${environment.dir}/${environment}" includes="config.xml" prefix="database"/>

or:

<zipfileset dir="${environment.dir}/${environment}" includes="config.xml" fullpath="database/config.xml"/>
link|flag
so if I understand you correctly, you're suggesting that after the jar has been created to stuff in the config file through zip? – Stephane Grenier Sep 16 at 18:30
No, since the &lt;jar&gt; task extends the &lt;zip&gt; task it supports nesting zipfileset and zipgroupfileset directly. – carej Sep 18 at 12:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.