Skip to content

Instantly share code, notes, and snippets.

@kousen
Created February 14, 2015 21:22
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 kousen/a26b8740892048010bd8 to your computer and use it in GitHub Desktop.
Save kousen/a26b8740892048010bd8 to your computer and use it in GitHub Desktop.
Gradle build file for GPars samples (downloaded samples.zip from http://gpars.codehaus.org/Demos)
apply plugin: 'groovy'
apply plugin: 'idea'
sourceSets {
src {
main {
groovy {
srcDirs 'src'
}
}
test {
groovy {
srcDirs 'test'
}
}
}
}
repositories {
jcenter()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.0'
compile "org.codehaus.gpars:gpars:1.2.1"
compile 'org.codehaus.jcsp:jcsp:1.1-rc5'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment