diff --git a/build.gradle.kts b/build.gradle.kts index 40d6d6a..57955aa 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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" @@ -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") diff --git a/gradle.properties b/gradle.properties index 8c0a155..7c18b1f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,4 @@ jjwtVersion=0.11.5 mysqlConnectorVersion=8.0.33 springDocOpenApiVersion=2.0.2 +jasyptVersion=3.0.5