From 3e619a735e63a1222e71060d9e65b354a156b158 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Wed, 28 Jan 2015 23:45:38 +0100 Subject: o Major refactoring on the BtPromise, mainly internal. Renaming BtPromise to BtSequence and BtSequencer. --- bt/build.gradle | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 bt/build.gradle (limited to 'bt/build.gradle') diff --git a/bt/build.gradle b/bt/build.gradle new file mode 100644 index 0000000..5beefce --- /dev/null +++ b/bt/build.gradle @@ -0,0 +1,46 @@ +buildscript { + repositories { + mavenCentral() + } + + dependencies { + classpath 'me.tatarka:gradle-retrolambda:2.5.0' + } +} + +apply plugin: 'java' +apply plugin: 'idea' + +configurations { + provided +} + +sourceSets { + main.compileClasspath += configurations.provided + test.compileClasspath += configurations.provided + test.runtimeClasspath += configurations.provided +} + +//sourceCompatibility JavaVersion.VERSION_1_8 +//targetCompatibility JavaVersion.VERSION_1_8 +//sourceCompatibility "1.8" +//targetCompatibility "1.8" + +//compileJava { +// sourceCompatibility 1.8 +// targetCompatibility 1.8 +//} + +apply plugin: 'me.tatarka.retrolambda' + +dependencies { + provided project(':trygvis-io-bt-stubs') + testCompile 'junit:junit:4.11' + testCompile 'org.easytesting:fest-assert:1.4' +} + +idea { + module { + scopes.PROVIDED.plus += [configurations.provided] // for Gradle 2.0 + } +} -- cgit v1.2.3