Jump to content

Recommended Posts

Posted

I was moving in some of my .xcf files from GIMP to sit with the assets, and I didn't want them in the end user jar so I tried to exclude the xcfs folder I have under resources. However, regardless of how I do it, it ends up in the jar anyways.

 

Here's the build.gradle:

 

  Reveal hidden contents

 

Posted
  On 3/25/2014 at 5:35 AM, kenzierocks said:

I was moving in some of my .xcf files from GIMP to sit with the assets, and I didn't want them in the end user jar so I tried to exclude the xcfs folder I have under resources. However, regardless of how I do it, it ends up in the jar anyways.

 

gradle does not use your IDE's exclude setting when it builds. If they are in the assets folder they get included in the jar when you gradle build.

Posted
  On 3/25/2014 at 7:58 AM, sequituri said:

  Quote

I was moving in some of my .xcf files from GIMP to sit with the assets, and I didn't want them in the end user jar so I tried to exclude the xcfs folder I have under resources. However, regardless of how I do it, it ends up in the jar anyways.

 

gradle does not use your IDE's exclude setting when it builds. If they are in the assets folder they get included in the jar when you gradle build.

 

I know that, if you look at the build.gradle you'll notice I have an exclude right there.

Posted

With build.gradle as:

  Reveal hidden contents

 

 

Same thing.

  • 10 months later...
Posted

Apologies for necro-posting, but since this is the top google result for "forge gradle exclude xcf files from jar", I thought I should put in my solution.

 

You can exclude using sourceSets, like this

 

sourceSets {

    main {

        resources {

            exclude '**/xcf_folder_name/*'

            exclude 'resources/assets/<modname>/path/to/xcf/folder/xcf_folder_name'

        }

    }

}

 

 

So, for my mod (Minechem), I use this:

 

sourceSets {

    main {

        resources {

            exclude '**/xcf/*'

            exclude 'resources/assets/minechem/xcf'

        }

    }

}

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.