switch to lys-catalog

This commit is contained in:
2022-08-28 12:37:31 +08:00
parent aade1258c5
commit 5c2832b276
8 changed files with 46 additions and 37 deletions

View File

@@ -1,13 +1,13 @@
plugins {
id 'maven-publish'
id 'net.woggioni.gradle.multi-release-jar'
id 'org.jetbrains.kotlin.jvm'
alias catalog.plugins.kotlin
alias catalog.plugins.multi.release.jar
}
allprojects {
group = "net.woggioni"
version = getProperty('version.klevtree')
version = getProperty('klevtree.version')
repositories {
maven {
@@ -22,13 +22,12 @@ ext {
}
dependencies {
implementation platform(group: 'com.lys', name: 'lys-dependencies', version: getProperty('version.lys'))
implementation group: 'net.woggioni', name: 'jwo'
implementation catalog.jwo
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine'
testRuntimeOnly group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl'
testImplementation catalog.junit.jupiter.api
testImplementation catalog.junit.jupiter.params
testRuntimeOnly catalog.junit.jupiter.engine
testRuntimeOnly catalog.log4j.slf4j18.impl
}
compileJava {
@@ -48,7 +47,7 @@ test {
wrapper {
distributionType = Wrapper.DistributionType.BIN
gradleVersion = getProperty('version.gradle')
gradleVersion = getProperty('gradle.version')
}
publishing {