11import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
22
33plugins {
4- kotlin(" jvm" ) version " 1.8.20 "
5- kotlin(" kapt" ) version " 1.8.20 "
4+ kotlin(" jvm" ) version " 1.8.22 "
5+ kotlin(" kapt" ) version " 1.8.22 "
66 jacoco
77 signing
88 `maven- publish`
9- id(" io.github.gradle-nexus.publish-plugin" ) version " 1.1 .0"
9+ id(" io.github.gradle-nexus.publish-plugin" ) version " 1.3 .0"
1010}
1111
1212description = " Javalin Routing Extensions Parent | Parent project for Javalin Routing Extensions"
@@ -18,7 +18,7 @@ allprojects {
1818 apply (plugin = " signing" )
1919
2020 group = " io.javalin.community.routing"
21- version = " 5.5 .0-RC.3 "
21+ version = " 5.6 .0-RC.1 "
2222
2323 repositories {
2424 mavenCentral()
@@ -116,34 +116,34 @@ subprojects {
116116 apply (plugin = " org.jetbrains.kotlin.kapt" )
117117
118118 dependencies {
119- val javalin = " 5.5 .0"
119+ val javalin = " 5.6 .0"
120120 compileOnly(" io.javalin:javalin:$javalin " )
121121 testImplementation(" io.javalin:javalin:$javalin " )
122122 testImplementation(" io.javalin:javalin-testtools:$javalin " )
123123 kaptTest(" io.javalin.community.openapi:openapi-annotation-processor:$javalin " )
124124 testImplementation(" io.javalin.community.openapi:javalin-openapi-plugin:$javalin " )
125125
126- val jackson = " 2.14 .2"
126+ val jackson = " 2.15 .2"
127127 testImplementation(" com.fasterxml.jackson.core:jackson-databind:$jackson " )
128128 testImplementation(" com.fasterxml.jackson.module:jackson-module-kotlin:$jackson " )
129129 testImplementation(" com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson " )
130130
131- val unirest = " 3.14.1 "
131+ val unirest = " 3.14.2 "
132132 testImplementation(" com.konghq:unirest-java:$unirest " )
133133
134- val junit = " 5.9.2 "
134+ val junit = " 5.9.3 "
135135 testImplementation(" org.junit.jupiter:junit-jupiter-params:$junit " )
136136 testImplementation(" org.junit.jupiter:junit-jupiter-api:$junit " )
137137 testImplementation(" org.junit.jupiter:junit-jupiter-engine:$junit " )
138- testImplementation(" org.assertj:assertj-core:3.24.1 " )
138+ testImplementation(" org.assertj:assertj-core:3.24.2 " )
139139
140- val assertj = " 3.23.1 "
140+ val assertj = " 3.24.2 "
141141 testImplementation(" org.assertj:assertj-core:$assertj " )
142142
143- val logback = " 1.4.5 "
143+ val logback = " 1.4.7 "
144144 testImplementation(" ch.qos.logback:logback-core:$logback " )
145145 testImplementation(" ch.qos.logback:logback-classic:$logback " )
146- testImplementation(" org.slf4j:slf4j-api:2.0.0 " )
146+ testImplementation(" org.slf4j:slf4j-api:2.0.7 " )
147147 }
148148
149149 tasks.test {
@@ -194,11 +194,9 @@ jacoco {
194194}
195195
196196nexusPublishing {
197- repositories {
198- sonatype {
199- username.set(getEnvOrProperty(" SONATYPE_USER" , " sonatypeUser" ))
200- password.set(getEnvOrProperty(" SONATYPE_PASSWORD" , " sonatypePassword" ))
201- }
197+ repositories.sonatype {
198+ username.set(getEnvOrProperty(" SONATYPE_USER" , " sonatypeUser" ))
199+ password.set(getEnvOrProperty(" SONATYPE_PASSWORD" , " sonatypePassword" ))
202200 }
203201}
204202
0 commit comments