Mark filter-manifest-plugin as thread-safe 91/86591/3
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 27 Dec 2019 09:08:04 +0000 (10:08 +0100)
committerStephen Kitt <skitt@redhat.com>
Tue, 7 Jan 2020 15:02:11 +0000 (15:02 +0000)
This plugin can be used in parallel builds without affecting
functionality, mark it as such.

Change-Id: I50fcad3f3f88821e9427ba572d0ee21d9a748bb7
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
filter-manifest-plugin/src/main/java/org/opendaylight/odlparent/filter/manifest/plugin/FilterManifestMojo.java

index 88a3b772fb6271aa2be6ec25474dbe4986133dd5..01f5a8716eab6dfeaca7250a25273c3fd700405e 100644 (file)
@@ -26,7 +26,7 @@ import org.slf4j.LoggerFactory;
 /**
  * Mojo processing filtering an input Manifest file into an output, retaining only selected entries.
  */
-@Mojo(name = "filter-manifest")
+@Mojo(name = "filter-manifest", threadSafe = true)
 public class FilterManifestMojo extends AbstractMojo {
     private static final Logger LOG = LoggerFactory.getLogger(FilterManifestMojo.class);