Fixes #3093 - The antlr4-maven-plugin is not marked as thread safe

This commit is contained in:
Karl Heinz Marbaise 2021-02-27 13:23:08 +01:00
parent 60fd27ff93
commit 1b791a8694
No known key found for this signature in database
GPG Key ID: 8B0378A57CD8E243
2 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,7 @@ import java.util.Set;
name = "antlr4",
defaultPhase = LifecyclePhase.GENERATE_SOURCES,
requiresDependencyResolution = ResolutionScope.COMPILE,
requiresProject = true)
requiresProject = true, threadSafe = true)
public class Antlr4Mojo extends AbstractMojo {
// First, let's deal with the options that the ANTLR tool itself

View File

@ -287,3 +287,4 @@ YYYY/MM/DD, github id, Full name, email
2021/01/25, l215884529, Qiheng Liu, 13607681+l215884529@users.noreply.github.com
2021/02/02, tsotnikov, Taras Sotnikov, taras.sotnikov@gmail.com
2021/02/21, namasikanam, Xingyu Xie, namasikanam@gmail.com
2021/02/27, khmarbaise, Karl Heinz Marbaise, github@soebes.com