Skip to content

Commit 19760e7

Browse files
IDE support
Importing into Eclipse Juno with the Gradle plugin now gets everything setup, compiling and running correctly.
1 parent 88b722b commit 19760e7

File tree

5 files changed

+12
-1
lines changed

5 files changed

+12
-1
lines changed

language-adaptors/rxjava-clojure/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
apply plugin: 'java'
2+
apply plugin: 'eclipse'
3+
apply plugin: 'idea'
4+
25
dependencies {
36
compile project(':rxjava-core')
47
compile 'org.clojure:clojure:1.5.+'

language-adaptors/rxjava-groovy/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
apply plugin: 'java'
2+
apply plugin: 'eclipse'
3+
apply plugin: 'idea'
4+
25
dependencies {
36
compile project(':rxjava-core')
47
compile 'org.codehaus.groovy:groovy:1.8.8'

language-adaptors/rxjava-jruby/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
apply plugin: 'java'
2+
apply plugin: 'eclipse'
3+
apply plugin: 'idea'
4+
25
dependencies {
36
compile project(':rxjava-core')
47
compile 'org.jruby:jruby:1.7.2'

language-adaptors/rxjava-scala/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
apply plugin: 'scala'
2+
apply plugin: 'eclipse'
3+
apply plugin: 'idea'
24

35
tasks.withType(ScalaCompile) {
46
scalaCompileOptions.fork = true

rxjava-core/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33
apply plugin: 'idea'
44

55
// we want to target Java 1.5 so this can be used on Android
6-
sourceCompatibility = JavaVersion.VERSION_1_5
6+
sourceCompatibility = JavaVersion.VERSION_1_6
77
targetCompatibility = JavaVersion.VERSION_1_5
88

99
dependencies {

0 commit comments

Comments
 (0)