- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for executeLifecycle (0.12 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
*/ public String getExecuteLifecycle() { return executeLifecycle; } /** * @param executeLifecycle the new invocation lifecycle of the Mojo */ public void setExecuteLifecycle(String executeLifecycle) { this.executeLifecycle = executeLifecycle; } /**
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/test/resources/plugin.xml
<deprecated>deprecated-mojo</deprecated> <since>2.2</since> <executePhase>generate-sources</executePhase> <executeGoal>some-goal</executeGoal> <executeLifecycle>cobertura</executeLifecycle> <configurator>antrun</configurator> <parameters> <parameter> <name>finalName</name> <alias>jarName</alias> <type>java.lang.String</type>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
if (executeMojo != null) { mojo.setExecuteGoal(executeMojo); } String executeLifecycle = c.getChild("executeLifecycle").getValue(); if (executeLifecycle != null) { mojo.setExecuteLifecycle(executeLifecycle); } mojo.setInstantiationStrategy(c.getChild("instantiationStrategy").getValue());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
<version>1.0.0+</version> <type>String</type> <description>Reference the invocation goal of the Mojo.</description> </field> <field> <name>executeLifecycle</name> <version>1.0.0+</version> <type>String</type> <description></description> </field> <field> <name>requiresDependencyResolution</name>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Aug 16 14:16:22 UTC 2024 - 24.9K bytes - Viewed (0)