Skip to content
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

Upgrade to graphql-java 19.0 & Federation 2.1.0 #1270

Merged
merged 1 commit into from Oct 13, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions build.gradle.kts
Expand Up @@ -28,7 +28,7 @@ plugins {
`java-library`
id("nebula.dependency-recommender") version "11.0.0"
id("nebula.netflixoss") version "10.6.0"
id("org.jmailen.kotlinter") version "3.10.0"
id("org.jmailen.kotlinter") version "3.11.1"
berngp marked this conversation as resolved.
Show resolved Hide resolved
id("me.champeau.jmh") version "0.6.6"
kotlin("jvm") version Versions.KOTLIN_VERSION
kotlin("kapt") version Versions.KOTLIN_VERSION
Expand All @@ -50,16 +50,16 @@ allprojects {
// and suggest an upgrade. The only exception currently are those defined
// in buildSrc, most likley because the variables are used in plugins as well
// as dependencies. e.g. KOTLIN_VERSION
extra["sb.version"] = "2.6.7"
extra["sb.version"] = "2.6.12"
val springBootVersion = extra["sb.version"] as String

dependencyRecommendations {
mavenBom(mapOf("module" to "org.jetbrains.kotlin:kotlin-bom:${Versions.KOTLIN_VERSION}"))
mavenBom(mapOf("module" to "org.springframework:spring-framework-bom:5.3.18"))
mavenBom(mapOf("module" to "org.springframework:spring-framework-bom:5.3.23"))
berngp marked this conversation as resolved.
Show resolved Hide resolved
mavenBom(mapOf("module" to "org.springframework.boot:spring-boot-dependencies:${springBootVersion}"))
mavenBom(mapOf("module" to "org.springframework.security:spring-security-bom:5.6.5"))
mavenBom(mapOf("module" to "org.springframework.security:spring-security-bom:5.7.3"))
mavenBom(mapOf("module" to "org.springframework.cloud:spring-cloud-dependencies:2021.0.2"))
mavenBom(mapOf("module" to "com.fasterxml.jackson:jackson-bom:2.13.2"))
mavenBom(mapOf("module" to "com.fasterxml.jackson:jackson-bom:2.13.4"))
}
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Expand Up @@ -15,5 +15,5 @@
*/

object Versions {
const val KOTLIN_VERSION = "1.6.21"
const val KOTLIN_VERSION = "1.7.20"
}