You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: update kotlin to 1.7.21
* feat: use a kotlin-compile-testing fork compatible with kotlin 1.7.22
* chore: comments on kotlin-compile-testing
* chore: use 1.7.21 as 1.7.22 plugin is not available
* chore: update reactor extensions version
Copy file name to clipboardExpand all lines: plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/custom_scalars_jackson/build.gradle.kts
+5-5Lines changed: 5 additions & 5 deletions
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.7.5"
23
-
kotlin("jvm") version "1.7.10"
24
-
kotlin("plugin.spring") version "1.7.10"
22
+
id("org.springframework.boot") version "2.7.7"
23
+
kotlin("jvm") version "1.7.21"
24
+
kotlin("plugin.spring") version "1.7.21"
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") ?:"7.0.0-SNAPSHOT"
42
42
val icuVersion =System.getenv("ICU_VERSION") ?:"70.1"
43
43
val junitVersion =System.getenv("JUNIT_VERSION") ?:"5.8.2"
44
-
val kotlinVersion =System.getenv("KOTLIN_VERSION") ?:"1.7.10"
45
-
val springBootVersion =System.getenv("SPRINGBOOT_VERSION") ?:"2.7.5"
44
+
val kotlinVersion =System.getenv("KOTLIN_VERSION") ?:"1.7.21"
45
+
val springBootVersion =System.getenv("SPRINGBOOT_VERSION") ?:"2.7.7"
Copy file name to clipboardExpand all lines: plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/custom_scalars_kotlinx/build.gradle.kts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,8 @@ buildscript {
19
19
}
20
20
21
21
plugins {
22
-
kotlin("jvm") version "1.7.10"
23
-
kotlin("plugin.serialization") version "1.7.10"
22
+
kotlin("jvm") version "1.7.21"
23
+
kotlin("plugin.serialization") version "1.7.21"
24
24
}
25
25
26
26
apply(plugin ="com.expediagroup.graphql")
@@ -40,7 +40,7 @@ repositories {
40
40
val graphQLKotlinVersion =System.getenv("GRAPHQL_KOTLIN_VERSION") ?:"7.0.0-SNAPSHOT"
41
41
val icuVersion =System.getenv("ICU_VERSION") ?:"71.1"
42
42
val junitVersion =System.getenv("JUNIT_VERSION") ?:"5.8.2"
43
-
val kotlinVersion =System.getenv("KOTLIN_VERSION") ?:"1.7.10"
43
+
val kotlinVersion =System.getenv("KOTLIN_VERSION") ?:"1.7.21"
44
44
val ktorVersion =System.getenv("KTOR_VERSION") ?:"2.0.0"
45
45
val logbackVersion =System.getenv("LOGBACK_VERSION") ?:"1.2.1"
Copy file name to clipboardExpand all lines: plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/polymorphic_types_jackson/build.gradle.kts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,9 @@ buildscript {
18
18
}
19
19
20
20
plugins {
21
-
id("org.springframework.boot") version "2.7.5"
22
-
kotlin("jvm") version "1.7.10"
23
-
kotlin("plugin.spring") version "1.7.10"
21
+
id("org.springframework.boot") version "2.7.7"
22
+
kotlin("jvm") version "1.7.21"
23
+
kotlin("plugin.spring") version "1.7.21"
24
24
}
25
25
26
26
apply(plugin ="com.expediagroup.graphql")
@@ -39,8 +39,8 @@ repositories {
39
39
40
40
val graphQLKotlinVersion =System.getenv("GRAPHQL_KOTLIN_VERSION") ?:"7.0.0-SNAPSHOT"
41
41
val junitVersion =System.getenv("JUNIT_VERSION") ?:"5.8.2"
42
-
val kotlinVersion =System.getenv("KOTLIN_VERSION") ?:"1.7.10"
43
-
val springBootVersion =System.getenv("SPRINGBOOT_VERSION") ?:"2.7.5"
42
+
val kotlinVersion =System.getenv("KOTLIN_VERSION") ?:"1.7.21"
43
+
val springBootVersion =System.getenv("SPRINGBOOT_VERSION") ?:"2.7.7"
Copy file name to clipboardExpand all lines: plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/polymorphic_types_kotlinx/build.gradle.kts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,8 @@ buildscript {
18
18
}
19
19
20
20
plugins {
21
-
kotlin("jvm") version "1.7.10"
22
-
kotlin("plugin.serialization") version "1.7.10"
21
+
kotlin("jvm") version "1.7.21"
22
+
kotlin("plugin.serialization") version "1.7.21"
23
23
}
24
24
25
25
apply(plugin ="com.expediagroup.graphql")
@@ -38,7 +38,7 @@ repositories {
38
38
39
39
val graphQLKotlinVersion =System.getenv("GRAPHQL_KOTLIN_VERSION") ?:"7.0.0-SNAPSHOT"
40
40
val junitVersion =System.getenv("JUNIT_VERSION") ?:"5.8.2"
41
-
val kotlinVersion =System.getenv("KOTLIN_VERSION") ?:"1.7.10"
41
+
val kotlinVersion =System.getenv("KOTLIN_VERSION") ?:"1.7.21"
42
42
val ktorVersion =System.getenv("KTOR_VERSION") ?:"2.0.0"
43
43
val logbackVersion =System.getenv("LOGBACK_VERSION") ?:"1.2.1"
Copy file name to clipboardExpand all lines: plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/GraphQLGenerateClientIT.kt
Copy file name to clipboardExpand all lines: plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/GraphQLGradlePluginAbstractIT.kt
+2-2Lines changed: 2 additions & 2 deletions
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
Copy file name to clipboardExpand all lines: plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/GraphQLGradlePluginAndroidIT.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ class GraphQLGradlePluginAndroidIT {
0 commit comments