From 61b4a9ad4ce95f4cd566dd25af889f8b4345d6ba Mon Sep 17 00:00:00 2001 From: Isaac Aymerich Date: Mon, 18 Mar 2019 09:55:05 +0100 Subject: [PATCH] fix #237 --- plugin/src/main/java/com/spotify/plugin/dockerfile/TagMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/main/java/com/spotify/plugin/dockerfile/TagMojo.java b/plugin/src/main/java/com/spotify/plugin/dockerfile/TagMojo.java index 1c0fc72d..b364a153 100644 --- a/plugin/src/main/java/com/spotify/plugin/dockerfile/TagMojo.java +++ b/plugin/src/main/java/com/spotify/plugin/dockerfile/TagMojo.java @@ -42,7 +42,7 @@ public class TagMojo extends AbstractDockerMojo { * The repository to put the built image into, for example spotify/foo. You should also * set the tag parameter, otherwise the tag latest is used by default. */ - @Parameter(property = "dockerfile.repository", required = true) + @Parameter(property = "dockerfile.repository", required = false) private String repository; /**