Initial commit

This commit is contained in:
2023-01-11 22:21:05 +08:00
parent fe77af8230
commit 560a5e25f0
12 changed files with 416 additions and 46 deletions

View File

@@ -3,17 +3,22 @@ plugins {
}
group 'com.github.jie65535.openchat'
version '1.0-SNAPSHOT'
version 'dev-0.1.0'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation fileTree(dir: 'lib', include: ['*.jar'])
}
test {
useJUnitPlatform()
}
jar {
jar.baseName = 'openchat'
destinationDir = file(".")
}