Skip to content

Commit 8afddb5

Browse files
committed
Upgrade versions
1 parent 3c21193 commit 8afddb5

9 files changed

Lines changed: 31 additions & 46 deletions

File tree

cinema-api/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ plugins {
77

88
dependencies {
99
// Add this dependency to enable Jackson annotation generation in DTO classes
10-
compileOnly("com.fasterxml.jackson.core:jackson-annotations:2.13.4")
10+
compileOnly("com.fasterxml.jackson.core:jackson-annotations:2.13.5")
1111

1212
// Add this dependency to enable default Ktor adapters generation
13-
compileOnly("io.ktor:ktor-client-cio:2.1.2")
13+
compileOnly("io.ktor:ktor-client-cio:2.2.4")
1414
}

cinema-client/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Cinema Client"
33
plugins {
44
kotlin("jvm")
55
id("org.jetbrains.kotlin.plugin.spring")
6-
id("org.springframework.boot") version "2.5.2"
6+
id("org.springframework.boot") version "2.7.10"
77
}
88

99
dependencies {
@@ -12,13 +12,13 @@ dependencies {
1212
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
1313
implementation("org.springframework.boot:spring-boot-starter")
1414

15-
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.4")
16-
implementation("com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4")
15+
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.5")
16+
implementation("com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.5")
1717

1818
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
1919

20-
implementation("io.ktor:ktor-client-cio:2.1.2")
21-
implementation("io.ktor:ktor-client-websockets:2.1.2")
20+
implementation("io.ktor:ktor-client-cio:2.2.4")
21+
implementation("io.ktor:ktor-client-websockets:2.2.4")
2222

2323
implementation(kotlin("stdlib"))
2424
implementation(kotlin("reflect"))

cinema-server/build.gradle.kts

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,22 @@
1+
import org.springframework.boot.gradle.plugin.SpringBootPlugin
2+
13
description = "Cinema Server"
24

35
plugins {
46
kotlin("jvm")
57
id("org.jetbrains.kotlin.plugin.spring")
6-
id("org.springframework.boot") version "2.5.2"
8+
id("org.springframework.boot") version "2.7.10"
79
}
810

911
dependencies {
1012
implementation(project(":cinema-api"))
1113

12-
implementation(
13-
"com.graphql-java-kickstart:" +
14-
"graphql-kickstart-spring-boot-starter-webflux:11.1.0"
15-
)
16-
implementation(
17-
"com.graphql-java-kickstart:" +
18-
"graphql-kickstart-spring-boot-starter-tools:11.1.0"
19-
)
20-
implementation(
21-
"com.graphql-java-kickstart:" +
22-
"graphiql-spring-boot-starter:11.1.0"
23-
)
24-
implementation(
25-
"com.graphql-java-kickstart:" +
26-
"playground-spring-boot-starter:11.1.0"
27-
)
28-
29-
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
14+
implementation("com.graphql-java-kickstart:graphql-spring-boot-starter:14.0.0")
15+
16+
implementation(platform(SpringBootPlugin.BOM_COORDINATES))
3017
implementation("org.springframework.boot:spring-boot-starter-webflux")
3118

32-
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.4")
19+
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.5")
3320

3421
implementation(kotlin("stdlib"))
3522
implementation(kotlin("reflect"))
Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
11
graphql:
22
tools:
33
schema-location-pattern: io/github/ermadmi78/kobby/cinema/api/cinema.graphqls
4-
5-
---
6-
graphiql:
7-
enabled: true
8-
cdn:
9-
enabled: false
10-
11-
---
12-
graphql.playground:
13-
enabled: true
14-
cdn:
15-
enabled: false
4+
playground:
5+
enabled: true
6+
cdn:
7+
enabled: false

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# suppress inspection "UnusedProperty" for whole file
22
kotlin.code.style=official
3-
kotlin.version=1.6.21
4-
kotlinVersion=1.6.21
3+
kotlin.version=1.8.10
4+
kotlinVersion=1.8.10
55

66
group=io.github.ermadmi78
77
version=0.0.0-SNAPSHOT

gradle/wrapper/gradle-wrapper.jar

852 Bytes
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
4+
networkTimeout=10000
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists

gradlew

Lines changed: 8 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)