- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 168 for Goal (0.01 sec)
-
impl/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml
<artifactId>maven-it-plugin-expression</artifactId> <version>2.1-SNAPSHOT</version> <executions> <execution> <phase>validate</phase> <goals> <goal>eval</goal> </goals> <configuration> <outputFile>target/extension.properties</outputFile> <expressions> <expression>project/build/extensions</expression>
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/test/java/org/apache/maven/lifecycle/EmptyLifecyclePluginAnalyzer.java
plugin.setGroupId("org.apache.maven.plugins"); plugin.setArtifactId(artifactId); for (String goal : goals) { PluginExecution pluginExecution = new PluginExecution(); pluginExecution.setId("default-" + goal); pluginExecution.addGoal(goal); plugin.addExecution(pluginExecution); } return plugin; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/pom.xml
<pluginClassLoaderOutput>target/pcl.properties</pluginClassLoaderOutput> </configuration> <goals> <goal>load</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
okhttp-hpacktests/README.md
initialize them, you must run: git submodule init git submodule update TODO ---- * Add maven goal to avoid manual call to git submodule init. * Make hpack-test-case update itself from git, and run new tests. * Add maven goal to generate stories and a pull request to hpack-test-case to have others validate our output.Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Mon Dec 15 16:59:53 UTC 2014 - 578 bytes - Viewed (0) -
impl/maven-core/src/test/resources-project-builder/boolean-interpolation/pom.xml
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/PluginUpgradeCliTest.java
assertTrue(options.goals().isPresent(), "Goals should be present"); assertEquals(1, options.goals().get().size(), "Should have one goal"); assertEquals("apply", options.goals().get().get(0), "Goal should be 'apply'"); } @Test void testCheckGoalWithPlugins() throws ParseException { String[] args = {"check", "--plugins"};Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:48:39 UTC 2025 - 9.9K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-contributing-system-scope-plugin-dep/pom.xml
<resourcePaths>maven-core-it.properties</resourcePaths> <pluginClassLoaderOutput>target/pcl.properties</pluginClassLoaderOutput> </configuration> <goals> <goal>load</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleStarter.java
throw new NoGoalSpecifiedException("No goals have been specified for this build." + " You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or" + " <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>." + " Available lifecycle phases are: " + defaultLifeCycles.getLifecyclePhaseList() + "."); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java
plugin.setGroupId("org.apache.maven.plugins"); plugin.setArtifactId(artifactId); for (String goal : goals) { PluginExecution pluginExecution = new PluginExecution(); pluginExecution.setId("default-" + goal); pluginExecution.addGoal(goal); plugin.addExecution(pluginExecution); } return plugin; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java
/** * Retrieves the descriptor for the specified plugin goal from the plugin's main artifact. * * @param plugin The plugin whose mojo descriptor should be retrieved, must not be {@code null}. * @param goal The simple name of the mojo whose descriptor should be retrieved, must not be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0)