feat: Initial commit

This commit is contained in:
2026-07-27 13:47:24 +09:00
commit 27432cbbfd
20 changed files with 1840 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.16'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'net.jwsi.jcms'
version = '0.0.1-SNAPSHOT'
description = 'vpp'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
maven {
url project.mvnUrl
credentials {
username project.mvnUser
password project.mvnPasswd
}
}
}
configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'net.jwsi:jcms-cms:0.5-SNAPSHOT'
implementation 'net.jwsi:jcms-cms-board:0.5-SNAPSHOT'
implementation 'net.jwsi:jcms-cms-thymeleaf:0.5-SNAPSHOT'
implementation 'net.jwsi:jcms-cms-user:0.5-SNAPSHOT'
implementation 'net.jwsi:jcms-cms-login:0.5-SNAPSHOT'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
tasks.named('test') {
useJUnitPlatform()
}