chore: cstest 초기 세팅 (Gitea/Jenkins CI 연동 테스트용)

This commit is contained in:
2026-09-03 17:44:18 +09:00
commit 8af8486745
10 changed files with 418 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
plugins {
id 'application'
}
group = 'com.cstest'
version = '0.1.0'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.2')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
application {
mainClass = 'com.cstest.App'
}
test {
useJUnitPlatform()
}