-
Notifications
You must be signed in to change notification settings - Fork 103
[5기 조인수] Shorten URL 과제 PR입니다. #71
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
base: ZZAMBAs
Are you sure you want to change the base?
Changes from 31 commits
8a638f9
476b930
7ddf83f
f545f35
9e9b702
c9891ae
ee7e781
77d1b9e
960b602
6b261f9
7643d3c
41e8704
c26e7e5
7d638e7
9172394
2b83465
4f9300b
2853a6d
027c909
b41f1de
9970d68
d069253
c0c134c
df62215
9dc80e2
da170d3
1093c0c
e51224f
7077d58
3853796
237dc39
2f4e65b
db1d232
d30ee0b
ff371c7
9ea0a29
3a248f5
507ebba
8081b48
817e9eb
bc3dbb5
0a15a04
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| plugins { | ||
| id 'java' | ||
| id 'org.springframework.boot' version '3.2.0' | ||
| id 'io.spring.dependency-management' version '1.1.3' | ||
| } | ||
|
|
||
| group = 'org.prgms' | ||
| version = '0.0.1-SNAPSHOT' | ||
|
|
||
| java { | ||
| sourceCompatibility = '17' | ||
| } | ||
|
|
||
| configurations { | ||
| compileOnly { | ||
| extendsFrom annotationProcessor | ||
| } | ||
| } | ||
|
|
||
| repositories { | ||
| mavenCentral() | ||
| } | ||
|
|
||
| dependencies { | ||
| implementation 'org.springframework.boot:spring-boot-starter' | ||
| implementation 'org.springframework.boot:spring-boot-starter-web' | ||
| implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
| implementation 'com.mysql:mysql-connector-j:8.2.0' | ||
| implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' | ||
| compileOnly 'org.projectlombok:lombok' | ||
| annotationProcessor 'org.projectlombok:lombok' | ||
| testCompileOnly 'org.projectlombok:lombok' | ||
| testAnnotationProcessor 'org.projectlombok:lombok' | ||
|
Comment on lines
+32
to
+33
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 테스트 시에도 롬복이 필요한가요?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
| } | ||
|
|
||
| tasks.named('test') { | ||
| useJUnitPlatform() | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
| networkTimeout=10000 | ||
| validateDistributionUrl=true | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
런타임에만 필요해보이는데 관련해서 확인해주세요.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아무 생각 없이 implementation으로 받아오면 사실 scope 생각을 안해도 되는데 scope를 고려해야 하는 이유는 따로 있을까요?