- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for setPluginDescriptor (0.08 sec)
-
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExceptionTest.java
PluginDescriptor pluginDescriptor = new PluginDescriptor(); pluginDescriptor.setGoalPrefix("goalPrefix"); pluginDescriptor.setArtifactId("artifactId"); mojoDescriptor.setPluginDescriptor(pluginDescriptor); Parameter parameter = new Parameter(); parameter.setType("java.lang.String[]"); parameter.setName("toAddresses"); parameter.setRequired(true);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 6.8K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java
PluginDescriptor pluginDescriptor = new PluginDescriptor(); MojoDescriptor mojoDescriptor = new MojoDescriptor(); mojoDescriptor.setPluginDescriptor(pluginDescriptor); MojoExecution mojoExecution = new MojoExecution(mojoDescriptor); Throwable exception = new PluginExecutionException(mojoExecution, null, cause);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java
descriptor.setPlugin(plugin); descriptor.setVersion(plugin.getVersion()); final MojoDescriptor mojoDescriptor = new MojoDescriptor(); mojoDescriptor.setPluginDescriptor(descriptor); return mojoDescriptor; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java
session.setCurrentProject(project); session.getRequest().setRootDirectory(rootDirectory); MojoDescriptor mojo = new MojoDescriptor(); mojo.setPluginDescriptor(pluginDescriptor); mojo.setGoal("goal"); MojoExecution mojoExecution = new MojoExecution(mojo); return new PluginParameterExpressionEvaluator(session, mojoExecution); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.4K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
setComponentFactory(DEFAULT_LANGUAGE); } public MojoDescriptor(PluginDescriptor pd, org.apache.maven.api.plugin.descriptor.MojoDescriptor md) { this(); this.setPluginDescriptor(pd); this.setGoal(md.getGoal()); this.setExecuteGoal(md.getExecuteGoal()); this.setExecuteLifecycle(md.getExecuteLifecycle()); this.setExecutePhase(md.getExecutePhase());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 21.7K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java
plugin.setArtifactId("stub-plugin-" + phaseName); descriptor.setPlugin(plugin); descriptor.setArtifactId("artifact." + phaseName); mojoDescriptor.setPluginDescriptor(descriptor); mojoDescriptor.setThreadSafe(threadSafe); return mojoDescriptor; } public static Set<String> getScopes() { return new HashSet<>(Arrays.asList("compile"));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
pd.setDependencyNode(node); MojoDescriptor md = new MojoDescriptor(); md.setGoal("my-goal"); md.setPluginDescriptor(pd); pd.addComponentDescriptor(md); return new DefaultMojoExecution( InternalMavenSession.from(session), new org.apache.maven.plugin.MojoExecution(md)); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.3K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
if (mojos != null) { clones = new ArrayList<>(mojos.size()); for (MojoDescriptor mojo : mojos) { MojoDescriptor clone = mojo.clone(); clone.setPluginDescriptor(pluginDescriptor); clones.add(clone); } } return clones; } public PluginDescriptor(org.apache.maven.api.plugin.descriptor.PluginDescriptor original) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 16.2K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
public MojoDescriptor buildComponentDescriptor(PlexusConfiguration c, PluginDescriptor pluginDescriptor) throws PlexusConfigurationException { MojoDescriptor mojo = new MojoDescriptor(); mojo.setPluginDescriptor(pluginDescriptor); mojo.setGoal(c.getChild("goal").getValue()); mojo.setImplementation(c.getChild("implementation").getValue());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 17.5K bytes - Viewed (0)