Skip to content

Instantly share code, notes, and snippets.

@mdk-aza
Created January 11, 2015 12:18
Show Gist options
  • Save mdk-aza/a2d161cffa5572a033ad to your computer and use it in GitHub Desktop.
Save mdk-aza/a2d161cffa5572a033ad to your computer and use it in GitHub Desktop.
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.5
version = '1.0'
jar {
manifest {
attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version
}
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
compile group: 'com.thinkaurelius.titan', name: 'titan-core', version: '0.5.3'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
test {
systemProperties 'property': 'value'
}
uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment