Skip to content

Commit 86f8298

Browse files
committed
Merge pull request jhusain#8 from rspieldenner/master
gradle build for those not wanting to use maven
2 parents c9325e8 + f7b18e7 commit 86f8298

5 files changed

Lines changed: 277 additions & 0 deletions

File tree

build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apply plugin: "java"
2+
3+
group = "io.reactivex"
4+
version = "1.0-SNAPSHOT"
5+
6+
sourceCompatibility = 1.8
7+
targetCompatibility = 1.8
8+
9+
repositories {
10+
jcenter()
11+
}
12+
13+
dependencies {
14+
compile "io.reactivex:rxjava:1.0.0-rc.10"
15+
testCompile "junit:junit:4.11"
16+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Fri Nov 14 16:00:10 PST 2014
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2-bin.zip

gradlew

Lines changed: 164 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 90 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = "learnrxjava"

0 commit comments

Comments
 (0)