switch to lys-catalog

This commit is contained in:
2022-08-28 12:14:16 +08:00
parent c18efaf167
commit 3d2b9bc628
3 changed files with 21 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
plugins {
id 'maven-publish'
id 'net.woggioni.gradle.multi-release-jar'
id 'net.woggioni.gradle.lombok' apply false
alias catalog.plugins.lombok apply false
alias catalog.plugins.multi.release.jar
}
ext {
@@ -22,7 +22,7 @@ allprojects {
}
lombok {
version = getProperty('lombok.version')
version = catalog.versions.lombok.get()
}
test {
@@ -31,10 +31,10 @@ allprojects {
}
dependencies {
implementation group: 'net.woggioni', name: 'jwo', version: getProperty('jwo.version')
implementation catalog.jwo
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: getProperty('junit.jupiter.version')
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: getProperty('junit.jupiter.version')
testImplementation catalog.junit.jupiter.api
testRuntimeOnly catalog.junit.jupiter.engine
}
java {