Skip to content

Commit f62f167

Browse files
feat: update other references of springboot version (#1584)
1 parent c96bf6c commit f62f167

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/custom_scalars_jackson/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919
}
2020

2121
plugins {
22-
id("org.springframework.boot") version "2.7.2"
22+
id("org.springframework.boot") version "2.7.5"
2323
kotlin("jvm") version "1.7.10"
2424
kotlin("plugin.spring") version "1.7.10"
2525
}
@@ -42,7 +42,7 @@ val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "7.0.0-SNA
4242
val icuVersion = System.getenv("ICU_VERSION") ?: "70.1"
4343
val junitVersion = System.getenv("JUNIT_VERSION") ?: "5.8.2"
4444
val kotlinVersion = System.getenv("KOTLIN_VERSION") ?: "1.7.10"
45-
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.2"
45+
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.5"
4646
dependencies {
4747
implementation("com.expediagroup:graphql-kotlin-hooks-provider:$graphQLKotlinVersion")
4848
implementation("com.expediagroup:graphql-kotlin-spring-client:$graphQLKotlinVersion")

plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/polymorphic_types_jackson/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ buildscript {
1818
}
1919

2020
plugins {
21-
id("org.springframework.boot") version "2.7.2"
21+
id("org.springframework.boot") version "2.7.5"
2222
kotlin("jvm") version "1.7.10"
2323
kotlin("plugin.spring") version "1.7.10"
2424
}
@@ -40,7 +40,7 @@ repositories {
4040
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "7.0.0-SNAPSHOT"
4141
val junitVersion = System.getenv("JUNIT_VERSION") ?: "5.8.2"
4242
val kotlinVersion = System.getenv("KOTLIN_VERSION") ?: "1.7.10"
43-
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.2"
43+
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.5"
4444
dependencies {
4545
implementation("com.expediagroup:graphql-kotlin-spring-client:$graphQLKotlinVersion")
4646
implementation("com.expediagroup:graphql-kotlin-spring-server:$graphQLKotlinVersion")

plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/skip_include/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ buildscript {
1818
}
1919

2020
plugins {
21-
id("org.springframework.boot") version "2.7.2"
21+
id("org.springframework.boot") version "2.7.5"
2222
kotlin("jvm") version "1.7.10"
2323
kotlin("plugin.spring") version "1.7.10"
2424
}
@@ -41,7 +41,7 @@ val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "7.0.0-SNA
4141
val icuVersion = System.getenv("ICU_VERSION") ?: "70.1"
4242
val junitVersion = System.getenv("JUNIT_VERSION") ?: "5.8.2"
4343
val kotlinVersion = System.getenv("KOTLIN_VERSION") ?: "1.7.10"
44-
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.2"
44+
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.5"
4545
dependencies {
4646
implementation("com.expediagroup:graphql-kotlin-hooks-provider:$graphQLKotlinVersion")
4747
implementation("com.expediagroup:graphql-kotlin-spring-client:$graphQLKotlinVersion")

plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/GraphQLGradlePluginAbstractIT.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ abstract class GraphQLGradlePluginAbstractIT {
3737
// when running directly from IDE you will need to manually update those to correct values
3838
private val kotlinVersion = System.getProperty("kotlinVersion") ?: "1.7.10"
3939
private val junitVersion = System.getProperty("junitVersion") ?: "5.8.2"
40-
private val springBootVersion = System.getProperty("springBootVersion") ?: "2.7.2"
40+
private val springBootVersion = System.getProperty("springBootVersion") ?: "2.7.5"
4141

4242
val testSchema = loadResource("mocks/schema.graphql")
4343
val introspectionResult = loadResource("mocks/IntrospectionResult.json")

0 commit comments

Comments
 (0)