-
Notifications
You must be signed in to change notification settings - Fork 1
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
[BSVR-52] Gradle refreshVersion 플러그인 적용 #5
Changes from all commits
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
rootProject.name = "SPOT-server" | ||
|
||
plugins { | ||
// See https://jmfayard.github.io/refreshVersions | ||
id("de.fayard.refreshVersions") version "0.60.5" | ||
} | ||
Comment on lines
+3
to
+6
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. 이 플러그인을 사용해서 버전을 중앙 관리 하는 것~~ |
||
|
||
include("domain") | ||
include("application") |
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. 이 파일은 refreshVersions 하면 자동으로 생성되는 파일! 예시 동작은 공홈 참고 )) https://www.youtube.com/watch?v=VhYERonB8co 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. 확인! |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#### Dependencies and Plugin versions with their available updates. | ||
#### Generated by `./gradlew refreshVersions` version 0.60.5 | ||
#### | ||
#### Don't manually edit or split the comments that start with four hashtags (####), | ||
#### they will be overwritten by refreshVersions. | ||
#### | ||
#### suppress inspection "SpellCheckingInspection" for whole file | ||
#### suppress inspection "UnusedProperty" for whole file | ||
|
||
plugin.org.springframework.boot=3.0.1 | ||
|
||
plugin.io.spring.dependency-management=1.0.11.RELEASE | ||
|
||
plugin.com.diffplug.spotless=6.21.0 | ||
|
||
version.junit=5.9.1 | ||
|
||
version.org.projectlombok..lombok=1.18.30 | ||
|
||
version.org.springframework.boot..spring-boot-starter-test=3.0.1 | ||
|
||
version.org.springdoc..springdoc-openapi-starter-webmvc-ui=2.5.0 |
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.
refreshVersion가 만들어주는 versions.properties에서 버전 정보를 관리하므로, 직접 하드코딩 하지 않고 _로 표기해주면 돼!