Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9130179
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:54:47+00:00 2026-06-17T07:54:47+00:00

Given an Ant path element like the following one: <path id=compile.classpath> <pathelement location=${common.jar}/> <pathelement

  • 0

Given an Ant path element like the following one:

<path id="compile.classpath">
    <pathelement location="${common.jar}"/>
    <pathelement location="${servlet.jar}"/>
    <pathelement location="${j2ee.jar}"/>
    ...
</path>

How can I create an uber-jar that includes all the files in the path without having to spell out all the file names again? The following works, but contains duplicate code, and is not what I want:

<jar jarfile="uber.jar" ...>
    <manifest> ... </manifest>
    <zipfileset src="${common.jar}"/>     // UNWANTED code duplication
    <zipfileset src="${servlet.jar}"/>
    <zipfileset src="${j2ee.jar}"/>
</jar>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T07:54:48+00:00Added an answer on June 17, 2026 at 7:54 am

    You should be able to do this:

    <jar destfile="über.jar">
        <manifest>
            <attribute name="Main-Class" value="${entry.point.class}"/>
        </manifest>
        <path refid="compile.classpath"/>
    </jar>
    

    I don’t understand why the common.jar would have unwanted duplicate code. Also, you normally don’t include jars inside a jar.

    I think what you really want to create is a War File. A war file can contain multiple jars, plus the classes you want to execute (the ones you compiled via the <javac> task). In the META-INF/MANIFEST.MF file, you include a Main-Class: entry pointing to the class that should be the entry point of your war. Users will be able to execute your war as:

     $ java -jar my.war
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following ant build.xml : <path id=antclasspath> <fileset dir=lib> <include name=*.jar/> </fileset>
I am running an Ant command like: <delete dir=/some/folder/path//> The folder /path/ contains some
Given a resource structure of Unix-like paths: e.g. /foo/bar/baz/phleem/abc.txt and a set of ant-style
Given the following ant task: <apply executable=${mstest} addsourcefile=false> <arg value=/resultsfile:TestResults.trx /> <arg value=/testsettings:ReleaseCodeCoverage.testsettings />
Given that the web application doesn't have su privileges, I'd like to execute a
Given a MySQL table of real estate data, I would like to generate a
Given the following code: $(.force-selection).blur(function() { var value = $('matched-item').val(); //check if the input's
I have an Ant build file where I compile the Java source code of
when I run the ant target vssbuild it gives following error. D:\release>ant vssbuild Buildfile:
I am using the BZip2 compression library from Apache Ant. The documentation is given

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.