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 303447
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T07:11:22+00:00 2026-05-12T07:11:22+00:00

I am in the process of packaging my java application into a jar file.

  • 0

I am in the process of packaging my java application into a jar file. I am using ant and eclipse. I need to actually include in the jar a couple of separate, non-code files (xml and txt files) directly under the root folder, not in the same place as the code.

I am trying to use includesfile, but that doesn’t seem to work, here is my ant target:

<target name="distribute" depends="compile" includesfile="readthis.txt">
    <jar destfile="${distributionDir}/myjar.jar" >
        <fileset dir="${outputDir}"/>
    <fileset dir="${sourceDir}"/>           
    </jar>
</target>

The above works fine when I omit the includesfile argument. Plus, I need to add multiple non-code files. These files are located directly under the root project folder in Eclipse, and not within any java packages.

Also, as you can see above, I am basically including to the jar my source code as well. Is there a way to tell the jar task to put the source code in a separate folder from the compiled code?

As a compile or build task, Ant easily can separate source code from the compiled classes. But is there a way to do it within a jar file as well?

Many thanks for your time!

  • 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-05-12T07:11:22+00:00Added an answer on May 12, 2026 at 7:11 am

    You shouldn’t have an includesfile attribute in a target to start with, and I suspect you’ve misunderstood the point of it anyway – the idea is that the file you specify with includesfile contains patterns for which files to include, if you don’t want to put them into your Ant file.

    It strikes me that all you need is an extra fileset containing the appropriate files you need. For example, for readthis.txt:

    <target name="distribute" depends="compile">
      <jar destfile="${distributionDir}/myjar.jar" >
        <fileset dir="${outputDir}"/>
        <fileset dir="${sourceDir}"/>
        <fileset file="readthis.txt" />
      </jar>
    </target>
    

    I would also suggest that you create a new directory for the resources, so you can do:

    <target name="distribute" depends="compile">
      <jar destfile="${distributionDir}/myjar.jar" >
        <fileset dir="${outputDir}"/>
        <fileset dir="${sourceDir}"/>
        <fileset dir="${resourcesDir}" />
      </jar>
    </target>
    

    with no hassle. This will also keep your directory structure cleaner, making it easier to find things from the top downwards.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 213k
  • Answers 213k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Change your for loop to this:- For Each key in… May 12, 2026 at 10:34 pm
  • Editorial Team
    Editorial Team added an answer You could process your hashtable, just before sending to that… May 12, 2026 at 10:34 pm
  • Editorial Team
    Editorial Team added an answer I found the answer to the issue on a forum.… May 12, 2026 at 10:34 pm

Related Questions

I am in the process of designing a build system and the directory structure
I am currently working on automating/improving the release process for packaging my shop's entire
I am still in the process of getting comfortable with doing things the REST
I am currently working on converting an existing web application to support an additional

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.