switch to lys
This commit is contained in:
6
.gitattributes
vendored
Normal file
6
.gitattributes
vendored
Normal 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
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Ignore Gradle project-specific cache directory
|
||||||
|
.gradle
|
||||||
|
|
||||||
|
# Ignore Gradle build output directory
|
||||||
|
build
|
@@ -4,7 +4,8 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
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)
|
implementation(rootProject)
|
||||||
// runtime(files(rootProject.projectDir.toPath().resolve("src/test/resources")))
|
// runtime(files(rootProject.projectDir.toPath().resolve("src/test/resources")))
|
||||||
}
|
}
|
||||||
|
11
build.gradle
11
build.gradle
@@ -22,12 +22,13 @@ ext {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
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-api'
|
||||||
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: getProperty('version.junitJupiter')
|
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params'
|
||||||
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: getProperty('version.junitJupiter')
|
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine'
|
||||||
testRuntimeOnly group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: getProperty('version.log4j2')
|
testRuntimeOnly group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl'
|
||||||
}
|
}
|
||||||
|
|
||||||
compileJava {
|
compileJava {
|
||||||
|
@@ -2,11 +2,8 @@ kotlin.code.style=official
|
|||||||
|
|
||||||
woggioniMavenRepositoryUrl=https://woggioni.net/mvn/
|
woggioniMavenRepositoryUrl=https://woggioni.net/mvn/
|
||||||
|
|
||||||
version.gradle=7.3.3
|
version.gradle=7.4.2
|
||||||
version.multiReleaseJarPlugin=0.1
|
version.multiReleaseJarPlugin=0.1
|
||||||
version.klevtree=1.0
|
version.klevtree=1.0-SNAPSHOT
|
||||||
version.jwo=1.0
|
version.lys=0.1-SNAPSHOT
|
||||||
version.junitJupiter=5.7.2
|
version.kotlin=1.7.0
|
||||||
version.slf4j=1.7.32
|
|
||||||
version.kotlin=1.6.10
|
|
||||||
version.log4j2=2.17.1
|
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
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
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
Reference in New Issue
Block a user