File tree Expand file tree Collapse file tree 7 files changed +21
-21
lines changed
plugins/graphql-kotlin-gradle-plugin/src
android/androidGraphQLClient
client-generator/custom_scalars
test/kotlin/com/expediagroup/graphql/plugin/gradle Expand file tree Collapse file tree 7 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -15,22 +15,22 @@ org.gradle.jvmargs=-Xmx2g -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError
1515
1616# dependencies
1717kotlinJvmVersion = 1.8
18- kotlinVersion = 1.5.21
19- kotlinCoroutinesVersion = 1.5.1
20- kotlinxSerializationVersion = 1.2.2
18+ kotlinVersion = 1.5.31
19+ kotlinCoroutinesVersion = 1.5.2
20+ kotlinxSerializationVersion = 1.3.0
2121
2222androidPluginVersion = 7.0.1
23- classGraphVersion = 4.8.115
23+ classGraphVersion = 4.8.123
2424federationGraphQLVersion = 0.6.5
25- graphQLJavaVersion = 17.2
25+ graphQLJavaVersion = 17.3
2626jacksonVersion = 2.12.5
27- kotlinPoetVersion = 1.9.0
27+ kotlinPoetVersion = 1.10.1
2828ktorVersion = 1.6.3
2929reactorVersion = 3.4.9
3030reactorExtensionsVersion = 1.1.3
31- slf4jVersion = 1.7.30
32- springBootVersion = 2.5.3
33- springVersion = 5.3.9
31+ slf4jVersion = 1.7.32
32+ springBootVersion = 2.5.5
33+ springVersion = 5.3.10
3434
3535# test dependency versions
3636compileTestingVersion = 1.4.3
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ android {
1717}
1818
1919val graphQLKotlinVersion = System .getenv(" GRAPHQL_KOTLIN_VERSION" ) ? : " 5.0.0-SNAPSHOT"
20- val kotlinVersion = System .getenv(" KOTLIN_VERSION" ) ? : " 1.5.21 "
20+ val kotlinVersion = System .getenv(" KOTLIN_VERSION" ) ? : " 1.5.31 "
2121dependencies {
2222 implementation(" com.expediagroup:graphql-kotlin-ktor-client:$graphQLKotlinVersion " )
2323 implementation(" org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion " )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ buildscript {
1111
1212 val androidPluginVersion = System .getenv(" ANDROID_PLUGIN_VERSION" ) ? : " 7.0.1"
1313 val graphQLKotlinVersion = System .getenv(" GRAPHQL_KOTLIN_VERSION" ) ? : " 5.0.0-SNAPSHOT"
14- val kotlinVersion = System .getenv(" KOTLIN_VERSION" ) ? : " 1.5.21 "
14+ val kotlinVersion = System .getenv(" KOTLIN_VERSION" ) ? : " 1.5.31 "
1515 dependencies {
1616 classpath(" com.android.tools.build:gradle:$androidPluginVersion " )
1717 classpath(" com.expediagroup:graphql-kotlin-gradle-plugin:$graphQLKotlinVersion " )
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ buildscript {
1919}
2020
2121plugins {
22- id(" org.springframework.boot" ) version " 2.5.3 "
23- kotlin(" jvm" ) version " 1.5.20 "
24- kotlin(" plugin.spring" ) version " 1.5.20 "
22+ id(" org.springframework.boot" ) version " 2.5.5 "
23+ kotlin(" jvm" ) version " 1.5.31 "
24+ kotlin(" plugin.spring" ) version " 1.5.31 "
2525}
2626
2727apply (plugin = " com.expediagroup.graphql" )
@@ -41,8 +41,8 @@ repositories {
4141val graphQLKotlinVersion = System .getenv(" GRAPHQL_KOTLIN_VERSION" ) ? : " 5.0.0-SNAPSHOT"
4242val icuVersion = System .getenv(" ICU_VERSION" ) ? : " 69.1"
4343val junitVersion = System .getenv(" JUNIT_VERSION" ) ? : " 5.7.2"
44- val kotlinVersion = System .getenv(" KOTLIN_VERSION" ) ? : " 1.5.20 "
45- val springBootVersion = System .getenv(" SPRINGBOOT_VERSION" ) ? : " 2.5.3 "
44+ val kotlinVersion = System .getenv(" KOTLIN_VERSION" ) ? : " 1.5.31 "
45+ val springBootVersion = System .getenv(" SPRINGBOOT_VERSION" ) ? : " 2.5.5 "
4646dependencies {
4747 implementation(" com.expediagroup:graphql-kotlin-hooks-provider:$graphQLKotlinVersion " )
4848 implementation(" com.expediagroup:graphql-kotlin-spring-client:$graphQLKotlinVersion " )
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class GraphQLGenerateClientIT {
3535 sourceDirectory.copyRecursively(testProjectDirectory)
3636
3737 val junitVersion = System .getProperty(" junitVersion" ) ? : " 5.7.2"
38- val kotlinVersion = System .getProperty(" kotlinVersion" ) ? : " 1.5.21 "
38+ val kotlinVersion = System .getProperty(" kotlinVersion" ) ? : " 1.5.31 "
3939 val mockkVersion = System .getProperty(" mockkVersion" ) ? : " 1.11.0"
4040 val buildResult = GradleRunner .create()
4141 .withProjectDir(testProjectDirectory)
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ abstract class GraphQLGradlePluginAbstractIT {
3535
3636 // unsure if there is a better way - correct values are set from Gradle build
3737 // when running directly from IDE you will need to manually update those to correct values
38- private val kotlinVersion = System .getProperty(" kotlinVersion" ) ? : " 1.5.21 "
38+ private val kotlinVersion = System .getProperty(" kotlinVersion" ) ? : " 1.5.31 "
3939 private val junitVersion = System .getProperty(" junitVersion" ) ? : " 5.7.2"
40- private val springBootVersion = System .getProperty(" springBootVersion" ) ? : " 2.5.3 "
40+ private val springBootVersion = System .getProperty(" springBootVersion" ) ? : " 2.5.5 "
4141
4242 val testSchema = loadResource(" mocks/schema.graphql" )
4343 val introspectionResult = loadResource(" mocks/IntrospectionResult.json" )
Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ class GraphQLGradlePluginAndroidIT {
3737 val testProjectDirectory = tempDir.toFile()
3838 sourceDirectory.copyRecursively(testProjectDirectory)
3939
40- val androidPluginVersion = System .getProperty(" androidPluginVersion" ) ? : " 4.2.2 "
41- val kotlinVersion = System .getProperty(" kotlinVersion" ) ? : " 1.5.21 "
40+ val androidPluginVersion = System .getProperty(" androidPluginVersion" ) ? : " 7.0.1 "
41+ val kotlinVersion = System .getProperty(" kotlinVersion" ) ? : " 1.5.31 "
4242 val buildResult = GradleRunner .create()
4343 .withProjectDir(testProjectDirectory)
4444 .withPluginClasspath()
You can’t perform that action at this time.
0 commit comments