build.gradle 343 B

1234567891011121314151617
  1. apply plugin: 'java'
  2. sourceCompatibility = 1.7
  3. targetCompatibility = 1.7
  4. apply plugin: 'witness'
  5. dependencies {
  6. compile project(':bramble-core')
  7. compile fileTree(dir: 'libs', include: '*.jar')
  8. testCompile project(path: ':bramble-core', configuration: 'testOutput')
  9. }
  10. tasks.withType(Test) {
  11. systemProperty 'java.library.path', 'libs'
  12. }