- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 59 for getPlugin (0.11 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginResolutionException.java
.collect(Collectors.joining(System.lineSeparator() + "\t")), cause); this.plugin = plugin; } public Plugin getPlugin() { return plugin; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java
plugin.getVersion(), "maven-plugin", null, remoteRepositories, null); this.plugin = plugin; } public Plugin getPlugin() { return plugin; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K 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 Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.3K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java
InputSource defaultBindings = new InputSource(); defaultBindings.setModelId(DefaultLifecycleRegistry.DEFAULT_LIFECYCLE_MODELID); final Plugin plugin = mojoDescriptor.getPluginDescriptor().getPlugin(); plugin.setLocation("version", new InputLocation(12, 34, defaultBindings)); MojoExecution result = new MojoExecution(plugin, goal, executionId);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 9.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 09 16:35:21 GMT 2025 - 46.4K 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 Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 10.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java
return false; } private String pluginDeclaration(MavenSession mavenSession, MojoDescriptor mojoDescriptor) { InputLocation inputLocation = mojoDescriptor.getPluginDescriptor().getPlugin().getLocation(""); if (inputLocation != null && inputLocation.getSource() != null) { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append(inputLocation.getSource().getModelId());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:32 GMT 2025 - 17.5K 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; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 16.2K bytes - Click Count (0)