Skip to content

Commit

Permalink
Rename property
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Jan 20, 2025
1 parent b7fa4e1 commit 497e73b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ open class JibImageConfigExtension(project: Project) {
}

val imageRepository =
project.objects.property<String>().convention(System.getProperty("jib.to.image.repository")?.toString())
project.objects.property<String>().convention(System.getProperty("jibImage.repository")?.toString())
val imageName = project.objects.property<String>().convention(project.name)
val imageTag = project.objects.property<String>().convention(System.getProperty("jib.to.image.tag")?.toString())
val imageTag = project.objects.property<String>().convention(System.getProperty("jibImage.tag")?.toString())
}
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ internal class JibImageConfigPluginIT {
.withProjectDir(testProjectDir.toFile())
.withArguments(
"showJibImage",
"-Djib.to.image.repository=gcr.io/bakdata",
"-Djib.to.image.tag=a-tag"
"-DjibImage.repository=gcr.io/bakdata",
"-DjibImage.tag=a-tag"
)
.withProjectPluginClassPath()
.build()
Expand Down

0 comments on commit 497e73b

Please sign in to comment.