File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ plugins {
77
88dependencies {
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}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description = "Cinema Client"
33plugins {
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
99dependencies {
@@ -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" ))
Original file line number Diff line number Diff line change 1+ import org.springframework.boot.gradle.plugin.SpringBootPlugin
2+
13description = " Cinema Server"
24
35plugins {
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
911dependencies {
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" ))
Original file line number Diff line number Diff line change 11graphql :
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
Original file line number Diff line number Diff line change 11# suppress inspection "UnusedProperty" for whole file
22kotlin.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
66group =io.github.ermadmi78
77version =0.0.0-SNAPSHOT
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
45zipStoreBase =GRADLE_USER_HOME
56zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments