Search

build.gradle

build.gradle

โ€ข
Spring Boot 2.x.x
โ€ข
Spring Security 5.x.x
โ€ข
Spring Web
โ€ข
Spring Boot Dev Tools
โ€ข
Lombok
โ€ข
Thymeleaf
โ—ฆ
thymeleaf
โ—ฆ
thymeleaf-extras-springsecurity
โ—ฆ
thymeleaf-layout-dialect
โ€ข
MySQL Driver
โ€ข
MyBatis Framework

build.gradle

group Id ํ™•์ธํ•  ๊ฒƒ : group = 'com.aloha'
plugins { id 'java' id 'war' id 'org.springframework.boot' version '2.7.17' id 'io.spring.dependency-management' version '1.0.15.RELEASE' } group = 'com.aloha' version = '0.0.1-SNAPSHOT' java { sourceCompatibility = '17' } configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.3.1' implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5' compileOnly 'org.projectlombok:lombok' developmentOnly 'org.springframework.boot:spring-boot-devtools' runtimeOnly 'com.mysql:mysql-connector-j' annotationProcessor 'org.projectlombok:lombok' providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter-test:2.3.1' testImplementation 'org.springframework.security:spring-security-test' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' // ํƒ€์ž„๋ฆฌํ”„ ๋‹ค์ด์–ผ๋ ‰ํŠธ ๋ ˆ์ด์•„์›ƒ implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect' } tasks.named('test') { useJUnitPlatform() }
Java
๋ณต์‚ฌ