- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 164 for Goal (0.01 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/Goal.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.cling.invoker.mvnenc; /** * The mvnenc tool goal. */ public interface Goal { int execute(EncryptContext context) throws Exception;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 13 14:14:56 UTC 2024 - 973 bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/Goal.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.cling.invoker.mvnup; /** * The mvnup tool goal. */ public interface Goal { int execute(UpgradeContext context) throws Exception;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 971 bytes - Viewed (0) -
apache-maven/pom.xml
<artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-jline-native</id> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeArtifactIds>jline-native</includeArtifactIds> <includes>org/jline/nativ/**</includes> </configuration>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Nov 10 03:14:05 UTC 2025 - 12.7K bytes - Viewed (0) -
impl/maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/pom.xml
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
api/maven-api-model/pom.xml
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Sep 16 12:39:59 UTC 2025 - 3.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecycleMojo.java
import org.apache.maven.model.Dependency; /** * Mojo (plugin goal) binding to a lifecycle phase. * * @see LifecyclePhase */ public class LifecycleMojo { private String goal; private XmlNode configuration; private List<Dependency> dependencies; public String getGoal() { return goal; } public XmlNode getConfiguration() { return configuration;
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/lifecycle/internal/MojoDescriptorCreator.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 11.3K bytes - Viewed (0) -
pom.xml
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Dec 20 04:15:34 UTC 2025 - 4.9K bytes - Viewed (0) -
api/maven-api-plugin/pom.xml
<artifactId>modello-maven-plugin</artifactId> <executions> <execution> <id>modello-plugin</id> <goals> <goal>velocity</goal> <goal>xdoc</goal> <goal>xsd</goal> </goals> <phase>generate-sources</phase> <configuration> <velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 3.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java
if (p.length == 3) { // <groupId>:<artifactId>:<goal> gs.groupId = p[0]; gs.artifactId = p[1]; gs.goal = p[2]; } else if (p.length == 4) { // <groupId>:<artifactId>:<version>:<goal> gs.groupId = p[0]; gs.artifactId = p[1]; gs.version = p[2]; gs.goal = p[3]; } else { // invalid
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 9K bytes - Viewed (0)