- Sort Score
- Result 10 results
- Languages All
Results 11 - 15 of 15 for getLease (0.07 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
MojoDescriptor mojoDescriptor = getMojoDescriptor(project, plugin, goal); String phase = execution.getPhase() != null ? execution.getPhase() : mojoDescriptor.getPhase(); if (phase == null) { continue; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
assertTrue(md.isProjectRequired(), "Expected " + md + ".isProjectRequired() to return true"); assertFalse(md.isThreadSafe(), "Expected " + md + ".isThreadSafe() to return false"); assertEquals("package", md.getPhase()); assertEquals("org.apache.maven.plugin.jar.JarMojo", md.getImplementation()); assertEquals("antrun", md.getComponentConfigurator()); assertEquals("java", md.getLanguage());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 6K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
this.setDependencyResolutionRequired(md.getDependencyResolution()); this.setComponentConfigurator(md.getConfigurator()); this.setInheritedByDefault(md.isInheritedByDefault()); this.setPhase(md.getPhase()); this.setOnlineRequired(md.isOnlineRequired()); this.setProjectRequired(md.isProjectRequired()); this.setSince(md.getSince()); this.setThreadSafe(true);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 21.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
val = interpolate(org); if (org != val) { execution.setId(val); } // Phase org = execution.getPhase(); val = interpolate(org); if (org != val) { execution.setPhase(val); } // Goals visit(execution.getGoals());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 43.1K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
PluginExecution target, PluginExecution source, boolean sourceDominant, Map<Object, Object> context) { String src = source.getPhase(); if (src != null) { if (sourceDominant || target.getPhase() == null) { target.setPhase(src); target.setLocation("phase", source.getLocation("phase")); } } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 11:21:39 UTC 2025 - 99.2K bytes - Viewed (0)