switch to lys

This commit is contained in:
2022-06-24 07:56:23 +08:00
parent 24169971e2
commit 1c51802332
6 changed files with 24 additions and 14 deletions

6
.gitattributes vendored Normal file
View File

@@ -0,0 +1,6 @@
#
# https://help.github.com/articles/dealing-with-line-endings/
#
# These are explicitly windows files and should use crlf
*.bat text eol=crlf

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
# Ignore Gradle project-specific cache directory
.gradle
# Ignore Gradle build output directory
build

View File

@@ -4,7 +4,8 @@ plugins {
}
dependencies {
implementation group: 'net.woggioni', name: 'jwo', version: getProperty('version.jwo')
implementation platform(group: 'com.lys', name: 'lys-dependencies', version: getProperty('version.lys'))
implementation group: 'net.woggioni', name: 'jwo'
implementation(rootProject)
// runtime(files(rootProject.projectDir.toPath().resolve("src/test/resources")))
}

View File

@@ -22,12 +22,13 @@ ext {
}
dependencies {
implementation group: 'net.woggioni', name: 'jwo', version: getProperty('version.jwo')
implementation platform(group: 'com.lys', name: 'lys-dependencies', version: getProperty('version.lys'))
implementation group: 'net.woggioni', name: 'jwo'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: getProperty('version.junitJupiter')
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: getProperty('version.junitJupiter')
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: getProperty('version.junitJupiter')
testRuntimeOnly group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: getProperty('version.log4j2')
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'
}
compileJava {

View File

@@ -2,11 +2,8 @@ kotlin.code.style=official
woggioniMavenRepositoryUrl=https://woggioni.net/mvn/
version.gradle=7.3.3
version.gradle=7.4.2
version.multiReleaseJarPlugin=0.1
version.klevtree=1.0
version.jwo=1.0
version.junitJupiter=5.7.2
version.slf4j=1.7.32
version.kotlin=1.6.10
version.log4j2=2.17.1
version.klevtree=1.0-SNAPSHOT
version.lys=0.1-SNAPSHOT
version.kotlin=1.7.0

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists