Update dependencies.

This commit is contained in:
Oliver Rümpelein 2023-09-04 11:10:57 +02:00
parent 3fce8d4943
commit aa478a5ed9
3 changed files with 21 additions and 10 deletions

View file

@ -1 +1,12 @@
---
steps:
build:
image: gradle:jdk17
commands:
- gradle --build-cache assemble
upload:
image: gradle:jdk17
commands:
- gradle publish
when:
branch: master

View file

@ -7,7 +7,7 @@ plugins {
}
group = "de.pheerai"
version = "0.0.12-SNAPSHOT"
version = "0.0.13-SNAPSHOT"
repositories {
mavenCentral()
@ -66,21 +66,21 @@ publishing {
}
fun MutableVersionConstraint.kotestConstraints() {
prefer("5.5.0")
prefer("5.7.1")
strictly("[5.0.0,6.0.0[")
}
fun MutableVersionConstraint.kotlinxHtmlConstraints() {
prefer("0.8.0")
strictly("[0.8.0,0.9.0[")
prefer("0.9.1")
strictly("[0.9.0,1.0.0[")
}
fun MutableVersionConstraint.jsoupConstraints() {
prefer("1.15.4")
strictly("[1.15.0,1.16.0[")
prefer("1.16.1")
strictly("[1.16.0,1.17.0[")
}
fun MutableVersionConstraint.cliktConstraints() {
prefer("3.5.2")
strictly("[3.0.0,4.0.0[")
prefer("4.2.0")
strictly("[4.0.0,5.0.0[")
}

View file

@ -1,4 +1,4 @@
kotlin.code.style=official
coroutinesVersion=1.6.4
kotlinVersion=1.8.20
coroutinesVersion=1.7.1
kotlinVersion=1.9.0