Skip to content
Merged

M14 #26

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '0.13.1513'
ext.kotlin_version = '0.14.449'
repositories { jcenter() }
dependencies { classpath 'com.netflix.nebula:gradle-rxjava-project-plugin:2.+',
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" }
Expand All @@ -11,7 +11,7 @@ apply plugin: 'kotlin'
dependencies {
compile 'io.reactivex:rxjava:1.0.+'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'org.funktionale:funktionale:0.6_M13'
testCompile 'org.funktionale:funktionale:0.6_M14'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.8.5'
examplesCompile 'com.squareup.retrofit:retrofit:1.9.+'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package rx.lang.kotlin.examples.retrofit

import retrofit.http.GET
import retrofit.http.Path
import rx.Observable
import retrofit.RestAdapter
import retrofit.http.GET
import retrofit.http.Query
import rx.Observable

data class SearchResultEntry(val id : String, val latestVersion : String)
data class SearchResults(val docs : List<SearchResultEntry>)
Expand Down