- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 66 for getGoal (0.05 sec)
-
impl/maven-core/src/test/java/org/apache/maven/lifecycle/mapping/LifecyclePhaseTest.java
assertEquals(2, mojos.size()); LifecycleMojo mojo1 = mojos.get(0); assertNotNull(mojo1); assertEquals("jar:jar", mojo1.getGoal()); LifecycleMojo mojo2 = mojos.get(1); assertNotNull(mojo2); assertEquals("war:war", mojo2.getGoal()); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginManagerException.java
pluginArtifactId = mojoDescriptor.getPluginDescriptor().getArtifactId(); pluginVersion = mojoDescriptor.getPluginDescriptor().getVersion(); goal = mojoDescriptor.getGoal(); } protected PluginManagerException(MojoDescriptor mojoDescriptor, MavenProject project, String message) { super(message); this.project = project;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.1K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
*/ public String getId() { return getPluginDescriptor().getId() + ":" + getGoal(); } /** * @return the full goal name * @see PluginDescriptor#getGoalPrefix() * @see #getGoal() */ public String getFullGoalName() { return getPluginDescriptor().getGoalPrefix() + ":" + getGoal(); } /** {@inheritDoc} */ @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 21.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoNotFoundException.java
super(toMessage(goal, pluginDescriptor)); this.goal = goal; this.pluginDescriptor = pluginDescriptor; } public String getGoal() { return goal; } public PluginDescriptor getPluginDescriptor() { return pluginDescriptor; } private static String toMessage(String goal, PluginDescriptor pluginDescriptor) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java
LifecycleMojo mojo = mojos.get(i); GoalSpec gs = parseGoalSpec(mojo.getGoal()); if (gs == null) { logger.warn( "Ignored invalid goal specification '{}' from lifecycle mapping for phase {}", mojo.getGoal(), phase); continue; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecycleMojo.java
private XmlNode configuration; private List<Dependency> dependencies; public String getGoal() { return goal; } public XmlNode getConfiguration() { return configuration; } public List<Dependency> getDependencies() { return dependencies; } public void setGoal(String goal) { this.goal = goal; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java
return mojoDescriptor.getPluginDescriptor().getVersion(); } return plugin.getVersion(); } public String getGoal() { if (mojoDescriptor != null) { return mojoDescriptor.getGoal(); } return goal; } public void setMojoDescriptor(MojoDescriptor mojoDescriptor) { this.mojoDescriptor = mojoDescriptor;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecyclePhase.java
LifecycleMojo lifecycleMojo = new LifecycleMojo(); lifecycleMojo.setGoal(s.trim()); return lifecycleMojo; }; @Override public String toString() { return Optional.ofNullable(getMojos()).orElse(Collections.emptyList()).stream() .map(LifecycleMojo::getGoal) .collect(Collectors.joining(",")); } @Deprecated
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 7.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/MojoExecution.java
Plugin getPlugin(); @Nonnull PluginExecution getModel(); @Nonnull MojoDescriptor getDescriptor(); @Nonnull String getExecutionId(); @Nonnull String getGoal(); @Nonnull String getLifecyclePhase(); @Nonnull Optional<XmlNode> getConfiguration();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.8K bytes - Viewed (0)