feat(project): init

This commit is contained in:
2025-09-06 16:46:29 +08:00
commit 41e9ab80f2
13 changed files with 446 additions and 0 deletions

19
build.gradle Normal file
View File

@@ -0,0 +1,19 @@
plugins {
id 'java'
}
group = 'com.linkerlau'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}