Guest User

Untitled

a guest
Jan 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. sourceSets {
  2. dev
  3. }
  4.  
  5. import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
  6.  
  7. task devShadowJar(type: ShadowJar) {
  8. zip64 true
  9. from './build/classes/java/main'
  10. from project.configurations.compile
  11. from './src/dev/resources' // or wherever the resources and up under ./build
  12. }
Add Comment
Please, Sign In to add comment