mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-24 18:11:47 +01:00
logs from issue #138 indicate multiple modules are calling a non-threadsafe operation; as such, the mojo is being marked as threadSafe=false
This commit is contained in:
@@ -48,7 +48,7 @@ import org.owasp.dependencycheck.utils.Settings;
|
|||||||
name = "aggregate",
|
name = "aggregate",
|
||||||
defaultPhase = LifecyclePhase.VERIFY,
|
defaultPhase = LifecyclePhase.VERIFY,
|
||||||
/*aggregator = true,*/
|
/*aggregator = true,*/
|
||||||
threadSafe = true,
|
threadSafe = false,
|
||||||
requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME,
|
requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME,
|
||||||
requiresOnline = true
|
requiresOnline = true
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ import org.owasp.dependencycheck.utils.Settings;
|
|||||||
@Mojo(
|
@Mojo(
|
||||||
name = "check",
|
name = "check",
|
||||||
defaultPhase = LifecyclePhase.VERIFY,
|
defaultPhase = LifecyclePhase.VERIFY,
|
||||||
threadSafe = true,
|
threadSafe = false,
|
||||||
requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME,
|
requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME,
|
||||||
requiresOnline = true
|
requiresOnline = true
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ import org.owasp.dependencycheck.utils.Settings;
|
|||||||
@Mojo(
|
@Mojo(
|
||||||
name = "purge",
|
name = "purge",
|
||||||
defaultPhase = LifecyclePhase.GENERATE_RESOURCES,
|
defaultPhase = LifecyclePhase.GENERATE_RESOURCES,
|
||||||
threadSafe = true,
|
threadSafe = false,
|
||||||
requiresDependencyResolution = ResolutionScope.NONE,
|
requiresDependencyResolution = ResolutionScope.NONE,
|
||||||
requiresOnline = true
|
requiresOnline = true
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ import org.owasp.dependencycheck.utils.Settings;
|
|||||||
@Mojo(
|
@Mojo(
|
||||||
name = "update-only",
|
name = "update-only",
|
||||||
defaultPhase = LifecyclePhase.GENERATE_RESOURCES,
|
defaultPhase = LifecyclePhase.GENERATE_RESOURCES,
|
||||||
threadSafe = true,
|
threadSafe = false,
|
||||||
requiresDependencyResolution = ResolutionScope.NONE,
|
requiresDependencyResolution = ResolutionScope.NONE,
|
||||||
requiresOnline = true
|
requiresOnline = true
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user