Skip to content

Commit

Permalink
Update to springboot 2.7. (#112)
Browse files Browse the repository at this point in the history
Update to springboot 2.7.
  • Loading branch information
srinivasankavitha committed Dec 19, 2022
1 parent 9908b5a commit c8e0bcb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@
import org.gradle.api.tasks.testing.logging.TestExceptionFormat.*
import org.gradle.api.tasks.testing.logging.TestLogEvent.*


plugins {
id("java")
id("org.springframework.boot") version "2.6.2"
id("io.spring.dependency-management") version "1.0.12.RELEASE"
id("org.springframework.boot") version "2.7.3"
id("io.spring.dependency-management") version "1.1.0"
id("com.netflix.dgs.codegen") version "5.6.0"
}
apply(plugin = "com.netflix.dgs.codegen")

group = "com.example"
version = "0.0.1-SNAPSHOT"
Expand All @@ -43,6 +45,12 @@ repositories {
// ----
}

dependencyManagement {
imports {
mavenBom("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:latest.release")
}
}

dependencies {
implementation(platform("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:latest.release"))
implementation("com.netflix.graphql.dgs:graphql-dgs-spring-boot-starter")
Expand Down

0 comments on commit c8e0bcb

Please sign in to comment.