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
15
15
16
16
# dependencies
17
17
kotlinJvmVersion = 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
21
21
22
22
androidPluginVersion = 7.0.1
23
- classGraphVersion = 4.8.115
23
+ classGraphVersion = 4.8.123
24
24
federationGraphQLVersion = 0.6.5
25
- graphQLJavaVersion = 17.2
25
+ graphQLJavaVersion = 17.3
26
26
jacksonVersion = 2.12.5
27
- kotlinPoetVersion = 1.9.0
27
+ kotlinPoetVersion = 1.10.1
28
28
ktorVersion = 1.6.3
29
29
reactorVersion = 3.4.9
30
30
reactorExtensionsVersion = 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
34
34
35
35
# test dependency versions
36
36
compileTestingVersion = 1.4.3
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ android {
17
17
}
18
18
19
19
val 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 "
21
21
dependencies {
22
22
implementation(" com.expediagroup:graphql-kotlin-ktor-client:$graphQLKotlinVersion " )
23
23
implementation(" org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion " )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ buildscript {
11
11
12
12
val androidPluginVersion = System .getenv(" ANDROID_PLUGIN_VERSION" ) ? : " 7.0.1"
13
13
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 "
15
15
dependencies {
16
16
classpath(" com.android.tools.build:gradle:$androidPluginVersion " )
17
17
classpath(" com.expediagroup:graphql-kotlin-gradle-plugin:$graphQLKotlinVersion " )
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ buildscript {
19
19
}
20
20
21
21
plugins {
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 "
25
25
}
26
26
27
27
apply (plugin = " com.expediagroup.graphql" )
@@ -41,8 +41,8 @@ repositories {
41
41
val graphQLKotlinVersion = System .getenv(" GRAPHQL_KOTLIN_VERSION" ) ? : " 5.0.0-SNAPSHOT"
42
42
val icuVersion = System .getenv(" ICU_VERSION" ) ? : " 69.1"
43
43
val 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 "
46
46
dependencies {
47
47
implementation(" com.expediagroup:graphql-kotlin-hooks-provider:$graphQLKotlinVersion " )
48
48
implementation(" com.expediagroup:graphql-kotlin-spring-client:$graphQLKotlinVersion " )
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class GraphQLGenerateClientIT {
35
35
sourceDirectory.copyRecursively(testProjectDirectory)
36
36
37
37
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 "
39
39
val mockkVersion = System .getProperty(" mockkVersion" ) ? : " 1.11.0"
40
40
val buildResult = GradleRunner .create()
41
41
.withProjectDir(testProjectDirectory)
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ abstract class GraphQLGradlePluginAbstractIT {
35
35
36
36
// unsure if there is a better way - correct values are set from Gradle build
37
37
// 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 "
39
39
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 "
41
41
42
42
val testSchema = loadResource(" mocks/schema.graphql" )
43
43
val introspectionResult = loadResource(" mocks/IntrospectionResult.json" )
Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ class GraphQLGradlePluginAndroidIT {
37
37
val testProjectDirectory = tempDir.toFile()
38
38
sourceDirectory.copyRecursively(testProjectDirectory)
39
39
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 "
42
42
val buildResult = GradleRunner .create()
43
43
.withProjectDir(testProjectDirectory)
44
44
.withPluginClasspath()
You can’t perform that action at this time.
0 commit comments