lamber-ken opened a new pull request #1023: [HOTFIX] Fix error configuration item of dockerfile-maven-plugin URL: https://github.com/apache/incubator-hudi/pull/1023 ## What is the purpose of the pull request Fix error configuration item of dockerfile-maven-plugin, chang `forceTags` to `force`. From dockerfile-maven-plugin(v1.4.3) souce code, we can find out that the paramter is `force`. please check [dockerfile-maven-plugin source](https://github.com/spotify/dockerfile-maven/blob/v1.4.3/plugin/src/main/java/com/spotify/plugin/dockerfile/TagMojo.java). ```java /** * The repository to put the built image into, for example <tt>spotify/foo</tt>. You should also * set the <tt>tag</tt> parameter, otherwise the tag <tt>latest</tt> is used by default. */ @Parameter(property = "dockerfile.repository", required = true) private String repository; /** * The tag to apply to the built image. */ @Parameter(property = "dockerfile.tag", defaultValue = "latest", required = true) private String tag; /** * Whether to force re-assignment of an already assigned tag. */ @Parameter(property = "dockerfile.force", defaultValue = "true", required = true) private boolean force; /** * Disables the tag goal; it becomes a no-op. */ @Parameter(property = "dockerfile.tag.skip", defaultValue = "false") private boolean skipTag; ``` ## Verify this pull request This pull request without any test coverage.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
