File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed
graphql-kotlin-schema-generator
src/test/kotlin/com/expediagroup/graphql/generator Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ org.gradle.parallel=true
99systemProp.org.gradle.internal.publish.checksums.insecure =true
1010
1111# dependencies
12- kotlinVersion = 1.3.60
12+ kotlinVersion = 1.3.61
1313kotlinCoroutinesVersion = 1.3.3
1414
1515graphQLJavaVersion = 14.0
1616jacksonVersion = 2.10.2
1717springBootVersion = 2.2.4.RELEASE
18- classGraphVersion = 4.8.60
18+ classGraphVersion = 4.8.65
1919reactorVersion = 3.3.2.RELEASE
2020reactorExtensionsVersion = 1.0.2.RELEASE
2121
@@ -24,10 +24,10 @@ junitVersion = 5.6.0
2424mockkVersion = 1.9.3
2525
2626# plugin versions
27- detektVersion = 1.4.0
28- dokkaVersion = 0.10.0
27+ detektVersion = 1.5.1
28+ dokkaVersion = 0.10.1
2929jacocoVersion = 0.8.5
3030ktlintVersion = 0.36.0
31- ktlintPluginVersion = 9.1 .1
31+ ktlintPluginVersion = 9.2 .1
3232nexusPublishPluginVersion = 0.4.0
3333stagingPluginVersion = 0.21.2
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ val graphQLJavaVersion: String by project
55val jacksonVersion: String by project
66val kotlinVersion: String by project
77val kotlinCoroutinesVersion: String by project
8- val rxjavaVersion = " 2.2.17 "
8+ val rxjavaVersion = " 3.0.0 "
99
1010dependencies {
1111 api(" com.graphql-java:graphql-java:$graphQLJavaVersion " )
@@ -14,7 +14,7 @@ dependencies {
1414 api(" org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion " )
1515 api(" io.github.classgraph:classgraph:$classGraphVersion " )
1616 api(" com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion " )
17- testImplementation(" io.reactivex.rxjava2 :rxjava:$rxjavaVersion " )
17+ testImplementation(" io.reactivex.rxjava3 :rxjava:$rxjavaVersion " )
1818}
1919
2020tasks {
Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ import com.expediagroup.graphql.testSchemaConfig
2323import com.expediagroup.graphql.toSchema
2424import graphql.schema.GraphQLNamedType
2525import graphql.schema.GraphQLNonNull
26- import io.reactivex.Maybe
27- import io.reactivex.Observable
28- import io.reactivex.Single
26+ import io.reactivex.rxjava3.core. Maybe
27+ import io.reactivex.rxjava3.core. Observable
28+ import io.reactivex.rxjava3.core. Single
2929import org.junit.jupiter.api.Test
3030import java.util.concurrent.CompletableFuture
3131import kotlin.reflect.KType
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ import graphql.schema.FieldCoordinates
3636import graphql.schema.GraphQLList
3737import graphql.schema.GraphQLNonNull
3838import graphql.schema.GraphQLTypeUtil
39- import io.reactivex.Flowable
39+ import io.reactivex.rxjava3.core. Flowable
4040import org.junit.jupiter.api.Test
4141import org.reactivestreams.Publisher
4242import java.util.UUID
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import com.expediagroup.graphql.exceptions.InvalidSubscriptionTypeException
2323import com.expediagroup.graphql.hooks.SchemaGeneratorHooks
2424import graphql.schema.GraphQLFieldDefinition
2525import io.mockk.every
26- import io.reactivex.Flowable
26+ import io.reactivex.rxjava3.core. Flowable
2727import org.junit.jupiter.api.Test
2828import org.junit.jupiter.api.assertThrows
2929import org.reactivestreams.Publisher
Original file line number Diff line number Diff line change 1717package com.expediagroup.graphql.generator.types.utils
1818
1919import graphql.execution.DataFetcherResult
20- import io.reactivex.Flowable
20+ import io.reactivex.rxjava3.core. Flowable
2121import org.junit.jupiter.api.Test
2222import org.reactivestreams.Publisher
2323import java.util.concurrent.CompletableFuture
You can’t perform that action at this time.
0 commit comments