Fixes #3093 - The antlr4-maven-plugin is not marked as thread safe
This commit is contained in:
parent
60fd27ff93
commit
1b791a8694
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue