45 lines
1.5 KiB
Groovy
45 lines
1.5 KiB
Groovy
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'
|
|
implementation 'me.paulschwarz:spring-dotenv:4.0.0'
|
|
}
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
} |