File tree Expand file tree Collapse file tree
modules/openapi-generator/src/main/resources/kotlin-server/libraries/ktor
kotlin-server-modelMutable Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727 # - samples/server/petstore/kotlin-spring-default/**
2828
2929env :
30- GRADLE_VERSION : ' 8.10 '
30+ GRADLE_VERSION : ' 8.11 '
3131
3232jobs :
3333 build :
5454 - samples/server/petstore/kotlin-server/javalin-6
5555 - samples/server/petstore/kotlin-server/ktor
5656 - samples/server/petstore/kotlin-server/ktor2
57+ - samples/server/petstore/kotlin-server-modelMutable
5758 - samples/server/petstore/kotlin-misk
5859 - samples/server/petstore/kotlin-spring-declarative-interface
5960 - samples/server/petstore/kotlin-spring-declarative-interface-reactive-coroutines
Original file line number Diff line number Diff line change 1313 - ' samples/server/petstore/kotlin-server-required-and-nullable-properties/**'
1414
1515env :
16- GRADLE_VERSION : ' 8.10 '
16+ GRADLE_VERSION : ' 8.11 '
1717
1818jobs :
1919 build :
Original file line number Diff line number Diff line change 4242 - samples/server/petstore/kotlin-springboot-springfox
4343 - samples/server/petstore/kotlin-springboot-x-kotlin-implements
4444 - samples/server/petstore/kotlin-springboot-include-http-request-context-delegate
45- - samples/server/petstore/kotlin-server/ktor
4645 - samples/server/petstore/kotlin-server/ktor2
4746 - samples/server/petstore/kotlin-server/jaxrs-spec
4847 - samples/server/petstore/kotlin-server/jaxrs-spec-mutiny
49- - samples/server/petstore/kotlin-server-modelMutable
5048 - samples/server/petstore/kotlin-server/javalin
5149 - samples/server/others/kotlin-server/jaxrs-spec
5250 - samples/server/others/kotlin-server/jaxrs-spec-array-response
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ group = "{{groupId}}"
66version = "{ {artifactVersion} }"
77
88plugins {
9- kotlin(" jvm" ) version " 2.0.20 "
10- application
11- kotlin(" plugin.serialization" ) version " 2.0.20 "
9+ kotlin(" jvm" ) version " 2.3.0 "
10+ id( " io.ktor.plugin " ) version " 3.4.0 "
11+ kotlin(" plugin.serialization" ) version " 2.3.0 "
1212}
1313
1414application {
15- mainClass.set( " io.ktor.server.netty.EngineMain" )
15+ mainClass = " io.ktor.server.netty.EngineMain"
1616
1717 val isDevelopment: Boolean = project.ext.has(" development" )
1818 applicationDefaultJvmArgs = listOf(" -Dio.ktor.development=$isDevelopment" )
@@ -23,7 +23,6 @@ repositories {
2323}
2424
2525dependencies {
26- implementation(platform(" io.ktor:ktor-bom:3.0.2" ))
2726 implementation(" ch.qos.logback:logback-classic:$logback_version" )
2827{{#hasAuthMethods} }
2928 implementation("com.typesafe:config:1.4.1")
Original file line number Diff line number Diff line change 11kotlin.code.style =official
2- ktor_version =3.0.2
3- kotlin_version =2.0.20
2+ ktor_version =3.4.0
3+ kotlin_version =2.3.0
44logback_version =1.5.19
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ group = "org.openapitools"
66version = " 1.0.0"
77
88plugins {
9- kotlin(" jvm" ) version " 2.0.20 "
10- application
11- kotlin(" plugin.serialization" ) version " 2.0.20 "
9+ kotlin(" jvm" ) version " 2.3.0 "
10+ id( " io.ktor.plugin " ) version " 3.4.0 "
11+ kotlin(" plugin.serialization" ) version " 2.3.0 "
1212}
1313
1414application {
15- mainClass.set( " io.ktor.server.netty.EngineMain" )
15+ mainClass = " io.ktor.server.netty.EngineMain"
1616
1717 val isDevelopment: Boolean = project.ext.has(" development" )
1818 applicationDefaultJvmArgs = listOf (" -Dio.ktor.development=$isDevelopment " )
@@ -23,7 +23,6 @@ repositories {
2323}
2424
2525dependencies {
26- implementation(platform(" io.ktor:ktor-bom:3.0.2" ))
2726 implementation(" ch.qos.logback:logback-classic:$logback_version " )
2827 implementation(" com.typesafe:config:1.4.1" )
2928 implementation(" io.ktor:ktor-server-auth" )
Original file line number Diff line number Diff line change 11kotlin.code.style =official
2- ktor_version =3.0.2
3- kotlin_version =2.0.20
2+ ktor_version =3.4.0
3+ kotlin_version =2.3.0
44logback_version =1.5.19
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ group = "org.openapitools"
66version = " 1.0.0"
77
88plugins {
9- kotlin(" jvm" ) version " 2.0.20 "
10- application
11- kotlin(" plugin.serialization" ) version " 2.0.20 "
9+ kotlin(" jvm" ) version " 2.3.0 "
10+ id( " io.ktor.plugin " ) version " 3.4.0 "
11+ kotlin(" plugin.serialization" ) version " 2.3.0 "
1212}
1313
1414application {
15- mainClass.set( " io.ktor.server.netty.EngineMain" )
15+ mainClass = " io.ktor.server.netty.EngineMain"
1616
1717 val isDevelopment: Boolean = project.ext.has(" development" )
1818 applicationDefaultJvmArgs = listOf (" -Dio.ktor.development=$isDevelopment " )
@@ -23,7 +23,6 @@ repositories {
2323}
2424
2525dependencies {
26- implementation(platform(" io.ktor:ktor-bom:3.0.2" ))
2726 implementation(" ch.qos.logback:logback-classic:$logback_version " )
2827 implementation(" com.typesafe:config:1.4.1" )
2928 implementation(" io.ktor:ktor-server-auth" )
Original file line number Diff line number Diff line change 11kotlin.code.style =official
2- ktor_version =3.0.2
3- kotlin_version =2.0.20
2+ ktor_version =3.4.0
3+ kotlin_version =2.3.0
44logback_version =1.5.19
You can’t perform that action at this time.
0 commit comments