Skip to content

Commit

Permalink
refactor: version management
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake committed Jun 23, 2024
1 parent 5010b59 commit 41499c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ plugins {

java.sourceCompatibility = JavaVersion.VERSION_21

val jasyptVersion: String by project.extra

allprojects {
group = "com.mashup.ppangzip"
version = "0.0.1-SNAPSHOT"
Expand All @@ -27,7 +29,7 @@ subprojects {
dependencies {
implementation("org.springframework.boot:spring-boot-starter")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.5")
implementation("com.github.ulisesbocchio:jasypt-spring-boot-starter:${jasyptVersion}")

testImplementation("org.springframework.boot:spring-boot-starter-test")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
jjwtVersion=0.11.5
mysqlConnectorVersion=8.0.33
springDocOpenApiVersion=2.0.2
jasyptVersion=3.0.5

0 comments on commit 41499c2

Please sign in to comment.