How can I use a zipfileset src attribute without h

2019-04-21 11:28发布

I currently have this:

<jarjar destfile="a.jar" manifest="Manifest.mf">
  <zipfileset src="first.jar"/>
  <zipfileset src="second.jar"/>
</jarjar>

The problem is I have to manually specify each jar, because I need the src parameter to be taken in consideration. I would want something like this:

<zipfileset>
   <include name="*.jar"/>
<zipfileset>

And have their contents extracted and included in my resulting archive. Is this possible?

标签: ant jarjar
3条回答
Lonely孤独者°
2楼-- · 2019-04-21 11:58
<jar destfile="./dist/Ohmyfish.jar" basedir="./bin">
    <manifest>
        <attribute name="Created-By" value="Bruce Yang" />
        <attribute name="Main-Class" value="org.bruce.ohmyfish.entry.Main" />
    </manifest>
    <zipgroupfileset dir="./libs" includes="**/*.jar" />
</jar>
查看更多
smile是对你的礼貌
3楼-- · 2019-04-21 11:59

Maybe you could merge the jars first with:

<zip destfile="out.jar">
  <zipgroupfileset dir="lib" includes="*.jar"/>
</zip>

and specify the merged jar in the zipfileset.

zipgroupfileset

A <zipgroupfileset> allows for multiple zip files to be merged into

the archive. Each file found in this fileset is added to the archive the same way that zipfileset src files are added.

<zipgroupfileset> is a fileset and supports all of its attributes and

nested elements.

查看更多
相关推荐>>
4楼-- · 2019-04-21 12:09

According to comments on the jarjar wiki, you can use this in your jarjar:

<zipgroupfileset dir="lib" includes="*.jar" />

I haven't tried it.

查看更多
登录 后发表回答