Skip to content

Commit 7e4b433

Browse files
committed
Merge pull request #43 from ReactiveX/submodules
New project structure based on submodules (added samples module)
2 parents 7079fae + af9f75a commit 7e4b433

File tree

87 files changed

+1195
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+1195
-53
lines changed

.gitignore

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
# Compiled source #
22
###################
3-
*.com
43
*.class
5-
*.dll
6-
*.exe
7-
*.o
8-
*.so
94

105
# Packages #
116
############
@@ -15,7 +10,6 @@
1510
*.dmg
1611
*.gz
1712
*.iso
18-
*.jar
1913
*.rar
2014
*.tar
2115
*.zip
@@ -66,10 +60,6 @@ bin/
6660
/.nb-gradle/profiles/private/
6761
.nb-gradle-properties
6862

69-
# Scala build
70-
*.cache
71-
/.nb-gradle/private/
72-
7363
# Android
7464
local.properties
7565

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
language: java
1+
language: android
22

33
jdk:
44
- oraclejdk7
5+
6+
android:
7+
components:
8+
- android-20
9+
10+
script: "./gradlew build"

build.gradle

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,3 @@ buildscript {
55
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:1.12.+'
66
}
77
}
8-
9-
apply plugin: 'rxjava-project'
10-
apply plugin: 'provided-base'
11-
12-
dependencies {
13-
compile 'io.reactivex:rxjava:1.0.+'
14-
provided 'com.google.android:android:4.0.1.2'
15-
provided 'com.google.android:support-v4:r7'
16-
17-
// testing
18-
testCompile 'junit:junit-dep:4.10'
19-
testCompile 'org.mockito:mockito-core:1.8.5'
20-
testCompile('org.robolectric:robolectric:2.3') {
21-
exclude group: 'com.android.support'
22-
}
23-
}
24-
25-
test {
26-
testLogging {
27-
exceptionFormat "full"
28-
events "started"
29-
displayGranularity 2
30-
}
31-
}

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
version=1.0.0-RC1-SNAPSHOT
1+
rxJavaVersion=1.0.0-rc.9
2+
version=0.22.0

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Thu Sep 18 17:51:34 CEST 2014
1+
#Wed Oct 22 12:19:29 CEST 2014
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME

library/build.gradle

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
buildscript {
2+
repositories { jcenter() }
3+
dependencies {
4+
classpath 'com.netflix.nebula:gradle-rxjava-project-plugin:1.12.+'
5+
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:1.12.+'
6+
}
7+
}
8+
9+
apply plugin: 'rxjava-project'
10+
apply plugin: 'provided-base'
11+
12+
dependencies {
13+
compile "io.reactivex:rxjava:$rxJavaVersion"
14+
provided 'com.google.android:android:4.0.1.2'
15+
provided 'com.google.android:support-v4:r7'
16+
17+
// testing
18+
testCompile 'junit:junit-dep:4.10'
19+
testCompile 'org.mockito:mockito-core:1.8.5'
20+
testCompile('org.robolectric:robolectric:2.3') {
21+
exclude group: 'com.android.support'
22+
}
23+
}
24+
25+
test {
26+
testLogging {
27+
exceptionFormat "full"
28+
events "started"
29+
displayGranularity 2
30+
}
31+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)