- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getNonThreadSafePlugins (0.09 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java
/** * Get set of plugins having a goal/mojo used but not marked @threadSafe * * @return the set of plugins (without info on which goal is concerned) */ public Set<Plugin> getNonThreadSafePlugins() { Set<Plugin> plugins = new HashSet<>(); for (ExecutionPlanItem executionPlanItem : planItem) { final MojoExecution mojoExecution = executionPlanItem.getMojoExecution();Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
if (session.getRequest().getDegreeOfConcurrency() > 1 && session.getProjects().size() > 1) { final Set<Plugin> unsafePlugins = executionPlan.getNonThreadSafePlugins(); if (!unsafePlugins.isEmpty()) { for (String s : MultilineMessageHelper.format( "Your build is requesting parallel execution, but this project contains the following "Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 10.3K bytes - Click Count (0)