Skip to content

Commit 9fe8ed9

Browse files
committed
fix : jib gradle findProperty version collision
1 parent 78cdf3e commit 9fe8ed9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docker/back/home_server/api-module/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ jib{
8181
image = 'docker.io/ghkd110/server'
8282
tags = ['latest', 'test']
8383
auth {
84-
username = findProperty('jib.to.auth.username') ?: " " as Property<String>
85-
password = findProperty('jib.to.auth.password') ?: " " as Property<String>
84+
username = findProperty('jib.to.auth.username') ?: " "
85+
password = findProperty('jib.to.auth.password') ?: " "
8686

8787
if (username == " " || password == " ") {
8888
logger.warn("gradle.properties 파일이 있는지 확인")

docker/back/home_server/batch-module/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jib{
3535
image = 'docker.io/ghkd110/batch'
3636
tags = ['latest', 'test']
3737
auth {
38-
username = findProperty('jib.to.auth.username') ?: " " as Property<String>
39-
password = findProperty('jib.to.auth.password') ?: " " as Property<String>
38+
username = findProperty('jib.to.auth.username') ?: " "
39+
password = findProperty('jib.to.auth.password') ?: " "
4040

4141
if (username == " " || password == " ") {
4242
logger.warn("gradle.properties 파일이 있는지 확인")

docker/back/home_server/discord-module/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jib{
3737
image = 'docker.io/ghkd110/discord'
3838
tags = ['latest', 'test']
3939
auth {
40-
username = findProperty('jib.to.auth.username') ?: " " as Property<String>
41-
password = findProperty('jib.to.auth.password') ?: " " as Property<String>
40+
username = findProperty('jib.to.auth.username') ?: " "
41+
password = findProperty('jib.to.auth.password') ?: " "
4242

4343
if (username == " " || password == " ") {
4444
logger.warn("gradle.properties 파일이 있는지 확인")

0 commit comments

Comments
 (0)