Skip to content

Commit

Permalink
Avoid warning when executing maven with multithreading option
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelbey committed Nov 29, 2023
1 parent ab7adc4 commit b67235e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

import static org.finos.legend.pure.runtime.java.compiled.generation.orchestrator.JavaCodeGeneration.durationSinceInSeconds;

@Mojo(name = "build-pure-compiled-jar")
@Mojo(name = "build-pure-compiled-jar", threadSafe = true)
public class PureCompiledJarMojo extends AbstractMojo
{
@Parameter(defaultValue = "${project}", readonly = true, required = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.io.File;
import java.util.Set;

@Mojo(name = "build-pure-jar")
@Mojo(name = "build-pure-jar", threadSafe = true)
public class PureJarMojo extends AbstractMojo
{
@Parameter
Expand Down

0 comments on commit b67235e

Please sign in to comment.