build.gradle 515 B

1234567891011121314151617181920
  1. apply plugin: 'java'
  2. sourceCompatibility = 1.6
  3. targetCompatibility = 1.6
  4. apply plugin: 'witness'
  5. dependencies {
  6. compile project(':bramble-api')
  7. compile fileTree(dir: 'libs', include: '*.jar')
  8. compile 'com.madgag.spongycastle:core:1.54.0.0'
  9. compile 'com.h2database:h2:1.4.190'
  10. }
  11. dependencyVerification {
  12. verify = [
  13. 'com.madgag.spongycastle:core:1e7fa4b19ccccd1011364ab838d0b4702470c178bbbdd94c5c90b2d4d749ea1e',
  14. 'com.h2database:h2:23ba495a07bbbb3bd6c3084d10a96dad7a23741b8b6d64b213459a784195a98c'
  15. ]
  16. }