- Sort Score
- Num 10 results
- Language All
Results 61 - 64 of 64 for getPlugins (0.06 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/MojoExecution.java
* expressions. * * @since 4.0.0 */ @Experimental public interface MojoExecution { @Nonnull Plugin getPlugin(); @Nonnull PluginExecution getModel(); @Nonnull MojoDescriptor getDescriptor(); @Nonnull String getExecutionId(); @Nonnull String getGoal();Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Feb 28 23:54:53 GMT 2024 - 1.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java
final MojoExecution mojoExecution = executionPlanItem.getMojoExecution(); if (!mojoExecution.getMojoDescriptor().isThreadSafe()) { plugins.add(mojoExecution.getPlugin()); } } return plugins; } /** * Get set of mojos used but not marked @threadSafe * * @return the set of mojo descriptors */
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
final String defaulModelId = DefaultLifecycleRegistry.DEFAULT_LIFECYCLE_MODELID; List<String> unversionedPlugins = executionPlan.getMojoExecutions().stream() .map(MojoExecution::getPlugin) .filter(p -> p.getLocation("version") != null && p.getLocation("version").getSource() != null && defaulModelId.equals(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) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
} public String getRequiredJavaVersion() { return requiredJavaVersion; } public void setPlugin(Plugin plugin) { this.plugin = plugin; } public Plugin getPlugin() { return plugin; } public Artifact getPluginArtifact() { return pluginArtifact; } public void setPluginArtifact(Artifact pluginArtifact) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 16.2K bytes - Click Count (0)