Skip to content

Commit

Permalink
chore: #17 yml파일 변경 및 의존성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kyxxgsoo committed Jul 24, 2024
1 parent 0f9bfd8 commit 6671d3b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
18 changes: 14 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,22 @@ repositories {
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'

// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'

// Spring Data Jpa
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

// Spring Web
implementation 'org.springframework.boot:spring-boot-starter-web'

// Spring security
implementation 'org.springframework.boot:spring-boot-starter-security'

}

tasks.named('test') {
Expand Down
2 changes: 1 addition & 1 deletion config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.cabin.plat.domain.entity;
package com.cabin.plat.domain.test.entity;

import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
Expand Down

0 comments on commit 6671d3b

Please sign in to comment.