Skip to content

Instantly share code, notes, and snippets.

@riccardobl
Last active September 10, 2019 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save riccardobl/0e546a2b7ad609ab1e24ee29988f64bc to your computer and use it in GitHub Desktop.
Save riccardobl/0e546a2b7ad609ab1e24ee29988f64bc to your computer and use it in GitHub Desktop.
Asset pack gradle
apply plugin: 'maven'
apply plugin: 'java'
sourceSets {
main {
resources {
srcDirs = ["."]
include "**"
exclude (".gitignore", ".github",
"build", ".gradle", "README.md",
"local.properties", "*.gradle", "license" ,
"license.*", "LICENSE" , "LICENSE.*"
)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment