From 7d6cdafcce6bfbe59ca6cd0e7e15a200eadc04c7 Mon Sep 17 00:00:00 2001 From: Thomas Nield Date: Tue, 2 May 2017 20:17:34 -0500 Subject: [PATCH] implement Java plugin --- build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 65d1e68..b5b6a4d 100755 --- a/build.gradle +++ b/build.gradle @@ -9,11 +9,13 @@ buildscript { group = 'io.reactivex.rxjava2' -sourceCompatibility = JavaVersion.VERSION_1_8 -targetCompatibility = JavaVersion.VERSION_1_8 apply plugin: 'nebula.rxjava-project' apply plugin: 'kotlin' +apply plugin: 'java' + +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 dependencies { compile 'io.reactivex.rxjava2:rxjava:2.0.7'