| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- plugins {
- id 'java'
- // id 'war'
- id 'org.springframework.boot' version '3.4.5'
- id 'io.spring.dependency-management' version '1.1.7'
- }
- group = 'com.tsi'
- version = '0.0.1-SNAPSHOT'
- java {
- toolchain {
- languageVersion = JavaLanguageVersion.of(17)
- }
- }
- configurations {
- compileOnly {
- extendsFrom annotationProcessor
- }
- }
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-actuator'
- implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'org.springframework.boot:spring-boot-starter-web-services'
- implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.4'
- implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
- compileOnly 'org.projectlombok:lombok'
- developmentOnly 'org.springframework.boot:spring-boot-devtools'
- runtimeOnly 'com.oracle.database.jdbc:ojdbc11'
- annotationProcessor 'org.projectlombok:lombok'
- // providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
- implementation 'org.springframework.boot:spring-boot-starter-websocket'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- testImplementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter-test:3.0.4'
- testImplementation 'org.springframework.security:spring-security-test'
- testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
- implementation 'org.apache.poi:poi:5.2.3'
- implementation 'org.apache.poi:poi-ooxml:5.2.3'
- implementation group: 'com.oracle.ojdbc', name: 'orai18n', version: '19.3.0.0'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|