Skip to content

Instantly share code, notes, and snippets.

@Rulexec
Last active August 29, 2015 13:59
Show Gist options
  • Save Rulexec/10534278 to your computer and use it in GitHub Desktop.
Save Rulexec/10534278 to your computer and use it in GitHub Desktop.
allprojects {
repositories {
flatDir {
dirs '/home/ruliov/gradleJarsRepo'
}
};
{ initFile ->
if (initFile.exists()) {
apply from: initFile, to: project
}
} new File(project.projectDir, 'init.gradle')
}
apply plugin: 'java'
sourceSets {
test {
java {
srcDir 'src/dev/java'
}
}
}
dependencies {
compile project(':cats-peg')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment