Skip to content

Instantly share code, notes, and snippets.

@fmamud
Created May 15, 2016 01:08
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 fmamud/1db4980c2d5895ed06560a5ca1fdba94 to your computer and use it in GitHub Desktop.
Save fmamud/1db4980c2d5895ed06560a5ca1fdba94 to your computer and use it in GitHub Desktop.
TDC 2016 Floripa - Palestra Gradle: o melhor amigo no build do seu software
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile 'org.apache.commons:commons-lang3:3.4'
}
jar {
manifest.attributes 'Main-Class' : 'com.evento.TDC2016'
from { configurations.compile.collect { zipTree(it) } }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment