Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[18기_최예원] CRUD API 미션 제출합니다. #23

Open
wants to merge 20 commits into
base: yeni-choi
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions week1/spring-boot-tutorial-18th/.gitignore → .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ dependency-reduced-pom.xml
dump.rdb
interpolated*.xml
lib/
manifest.yml
out
overridedb.*
target
Expand All @@ -40,4 +39,5 @@ secrets.yml
.gradletasknamecache
.sts4-cache

.idea
.idea
*.yml
16 changes: 10 additions & 6 deletions week1/spring-boot-tutorial-18th/build.gradle → build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.3'
id 'io.spring.dependency-management' version '1.1.3'
id 'org.springframework.boot' version '3.1.1'
id 'io.spring.dependency-management' version '1.1.0'
}

group = 'com.ceos18'
Expand All @@ -17,14 +17,18 @@ repositories {

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'

// DB
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter'

implementation 'mysql:mysql-connector-java:8.0.27'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.mysql:mysql-connector-j:8.0.32'
annotationProcessor 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'

testImplementation 'org.springframework.boot:spring-boot-starter-test'

testImplementation 'junit:junit:4.13.2'
}

tasks.named('test') {
Expand Down
File renamed without changes.
File renamed without changes.
Loading