[진행중]
This commit is contained in:
25
build.gradle
25
build.gradle
@@ -1,3 +1,9 @@
|
||||
buildscript {
|
||||
ext {
|
||||
queryDslVersion = "5.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot' version '3.5.4'
|
||||
@@ -23,12 +29,6 @@ repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
buildscript {
|
||||
ext {
|
||||
queryDslVersion = "5.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// 개발용 의존성 추가
|
||||
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
||||
@@ -36,6 +36,19 @@ dependencies {
|
||||
// PostgreSQL JDBC 드라이버
|
||||
runtimeOnly 'org.postgresql:postgresql'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||
|
||||
// Spring Security 추가
|
||||
implementation 'org.springframework.boot:spring-boot-starter-security'
|
||||
|
||||
// Validation 추가
|
||||
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
||||
|
||||
// ModelMapper 추가
|
||||
implementation 'org.modelmapper:modelmapper:3.1.1'
|
||||
|
||||
// MyBatis 추가
|
||||
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3'
|
||||
|
||||
compileOnly 'org.projectlombok:lombok'
|
||||
annotationProcessor 'org.projectlombok:lombok'
|
||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||
|
Reference in New Issue
Block a user