- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setExecuteGoal (0.12 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
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()); this.setDeprecated(md.getDeprecated());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 21.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
mojo.setExecutePhase(executePhase); } String executeMojo = c.getChild("executeGoal").getValue(); if (executeMojo != null) { mojo.setExecuteGoal(executeMojo); } String executeLifecycle = c.getChild("executeLifecycle").getValue(); if (executeLifecycle != null) { mojo.setExecuteLifecycle(executeLifecycle);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0)