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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:09:09+00:00 2026-06-13T17:09:09+00:00

How can I build a separate jar for a specific package in a project?

  • 0

How can I build a separate jar for a specific package in a project?
I have a project structure like this:

Project Something
  |
  |-> DifferentPackages

Or a jar for each package using a build.xml?

  • 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-13T17:09:11+00:00Added an answer on June 13, 2026 at 5:09 pm

    In your build xml, define one task each to produce one jar. With in the task, use fileset to include only specific package.

    Once done, create a wrapper task and make it dependent on all the jars tasks created above or wrap all jar creation tasks in the new task itself. Make this a default target.

    e.g.

    <project name="project" default="AllJars" basedir=".">
      <target name="AllJars" depends="compile">
       <mkdir dir="dist"/>
       <jar jarfile="dist/jar1.jar">
         <fileset dir="build">
             <include name="package1/*.class"/>
         </fileset>
        </jar>
        <jar jarfile="dist/jar2.jar">
         <fileset dir="build">
             <include name="package2/*.class"/>
         </fileset>
        </jar>
      </target>
     </project>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a project that is coded in C. I can build it, change
I have a separate build configuration used to deploy built files. This configuration uses
I have a multi-project build and in each of the projects I have several
I can build my project in Xcode(4.2) for debugging without issues, but when I
I just found the IUI project on google code where you can build websites
I created a library bundle for commons-lang3 and this works well. I can build
I have a Java project that has just about every class and package depending
Let's say I have a type of lookup table which I can build for
I have written a Java GUI using SWT. I package the application using an
The answer: Making stand-alone jar with Simple Build Tool seems like what I need,

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.