Skip to content

[build] update other references of springboot version #1584

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ buildscript {
}

plugins {
id("org.springframework.boot") version "2.7.2"
id("org.springframework.boot") version "2.7.5"
kotlin("jvm") version "1.7.10"
kotlin("plugin.spring") version "1.7.10"
}
Expand All @@ -42,7 +42,7 @@ val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "7.0.0-SNA
val icuVersion = System.getenv("ICU_VERSION") ?: "70.1"
val junitVersion = System.getenv("JUNIT_VERSION") ?: "5.8.2"
val kotlinVersion = System.getenv("KOTLIN_VERSION") ?: "1.7.10"
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.2"
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.5"
dependencies {
implementation("com.expediagroup:graphql-kotlin-hooks-provider:$graphQLKotlinVersion")
implementation("com.expediagroup:graphql-kotlin-spring-client:$graphQLKotlinVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildscript {
}

plugins {
id("org.springframework.boot") version "2.7.2"
id("org.springframework.boot") version "2.7.5"
kotlin("jvm") version "1.7.10"
kotlin("plugin.spring") version "1.7.10"
}
Expand All @@ -40,7 +40,7 @@ repositories {
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "7.0.0-SNAPSHOT"
val junitVersion = System.getenv("JUNIT_VERSION") ?: "5.8.2"
val kotlinVersion = System.getenv("KOTLIN_VERSION") ?: "1.7.10"
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.2"
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.5"
dependencies {
implementation("com.expediagroup:graphql-kotlin-spring-client:$graphQLKotlinVersion")
implementation("com.expediagroup:graphql-kotlin-spring-server:$graphQLKotlinVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildscript {
}

plugins {
id("org.springframework.boot") version "2.7.2"
id("org.springframework.boot") version "2.7.5"
kotlin("jvm") version "1.7.10"
kotlin("plugin.spring") version "1.7.10"
}
Expand All @@ -41,7 +41,7 @@ val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "7.0.0-SNA
val icuVersion = System.getenv("ICU_VERSION") ?: "70.1"
val junitVersion = System.getenv("JUNIT_VERSION") ?: "5.8.2"
val kotlinVersion = System.getenv("KOTLIN_VERSION") ?: "1.7.10"
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.2"
val springBootVersion = System.getenv("SPRINGBOOT_VERSION") ?: "2.7.5"
dependencies {
implementation("com.expediagroup:graphql-kotlin-hooks-provider:$graphQLKotlinVersion")
implementation("com.expediagroup:graphql-kotlin-spring-client:$graphQLKotlinVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ abstract class GraphQLGradlePluginAbstractIT {
// when running directly from IDE you will need to manually update those to correct values
private val kotlinVersion = System.getProperty("kotlinVersion") ?: "1.7.10"
private val junitVersion = System.getProperty("junitVersion") ?: "5.8.2"
private val springBootVersion = System.getProperty("springBootVersion") ?: "2.7.2"
private val springBootVersion = System.getProperty("springBootVersion") ?: "2.7.5"

val testSchema = loadResource("mocks/schema.graphql")
val introspectionResult = loadResource("mocks/IntrospectionResult.json")
Expand Down