Compare commits
3 commits
2d4cf122bf
...
11b6400ed4
Author | SHA1 | Date | |
---|---|---|---|
11b6400ed4 | |||
aa478a5ed9 | |||
3fce8d4943 |
3 changed files with 28 additions and 13 deletions
15
.woodpecker.yml
Normal file
15
.woodpecker.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
steps:
|
||||||
|
build:
|
||||||
|
image: gradle:jdk17
|
||||||
|
commands:
|
||||||
|
- gradle --build-cache assemble
|
||||||
|
upload:
|
||||||
|
image: gradle:jdk17
|
||||||
|
commands:
|
||||||
|
- gradle publish
|
||||||
|
when:
|
||||||
|
branch: master
|
||||||
|
secrets:
|
||||||
|
- source: maven-repo-token
|
||||||
|
target: ci_job_token
|
|
@ -7,7 +7,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "de.pheerai"
|
group = "de.pheerai"
|
||||||
version = "0.0.12-SNAPSHOT"
|
version = "0.0.13-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
@ -52,10 +52,10 @@ publishing {
|
||||||
}
|
}
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
url = uri("https://git.f3l.de/api/v4/projects/160/packages/maven")
|
name = "F3L Gitea"
|
||||||
name = "GitLab"
|
url = uri("https://git.f3l.de/api/packages/pheerai/maven")
|
||||||
credentials(HttpHeaderCredentials::class.java) {
|
credentials(HttpHeaderCredentials::class.java) {
|
||||||
name = "Job-Token"
|
name = "Authorization"
|
||||||
value = System.getenv("CI_JOB_TOKEN")
|
value = System.getenv("CI_JOB_TOKEN")
|
||||||
}
|
}
|
||||||
authentication {
|
authentication {
|
||||||
|
@ -66,21 +66,21 @@ publishing {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun MutableVersionConstraint.kotestConstraints() {
|
fun MutableVersionConstraint.kotestConstraints() {
|
||||||
prefer("5.5.0")
|
prefer("5.7.1")
|
||||||
strictly("[5.0.0,6.0.0[")
|
strictly("[5.0.0,6.0.0[")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun MutableVersionConstraint.kotlinxHtmlConstraints() {
|
fun MutableVersionConstraint.kotlinxHtmlConstraints() {
|
||||||
prefer("0.8.0")
|
prefer("0.9.1")
|
||||||
strictly("[0.8.0,0.9.0[")
|
strictly("[0.9.0,1.0.0[")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun MutableVersionConstraint.jsoupConstraints() {
|
fun MutableVersionConstraint.jsoupConstraints() {
|
||||||
prefer("1.15.4")
|
prefer("1.16.1")
|
||||||
strictly("[1.15.0,1.16.0[")
|
strictly("[1.16.0,1.17.0[")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun MutableVersionConstraint.cliktConstraints() {
|
fun MutableVersionConstraint.cliktConstraints() {
|
||||||
prefer("3.5.2")
|
prefer("4.2.0")
|
||||||
strictly("[3.0.0,4.0.0[")
|
strictly("[4.0.0,5.0.0[")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
kotlin.code.style=official
|
kotlin.code.style=official
|
||||||
|
|
||||||
coroutinesVersion=1.6.4
|
coroutinesVersion=1.7.1
|
||||||
kotlinVersion=1.8.20
|
kotlinVersion=1.9.0
|
||||||
|
|
Loading…
Reference in a new issue