- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for getGoals (0.05 seconds)
-
compat/maven-model/pom.xml
<exclude>org.apache.maven.model.Notifier#addConfiguration(java.lang.String,java.lang.String):METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.Plugin#getGoals():METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.Plugin#setGoals(java.lang.Object):METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.Resource#initMergeId():METHOD_REMOVED</exclude>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 7.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
for (Plugin plugin : project.getBuild().getPlugins()) { for (PluginExecution execution : plugin.getExecutions()) { for (String goal : execution.getGoals()) { MojoDescriptor mojoDescriptor = getMojoDescriptor(project, plugin, goal); String phase =
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0) -
cmd/peer-s3-client.go
GetHost() string SetPools([]int) GetPools() []int } type localPeerS3Client struct { node Node pools []int } func (l *localPeerS3Client) GetHost() string { return l.node.Host } func (l *localPeerS3Client) SetPools(p []int) { l.pools = make([]int, len(p)) copy(l.pools, p) } func (l localPeerS3Client) GetPools() []int { return l.pools }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 15.6K bytes - Click Count (0) -
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
assertEquals(2, pd.getMojos().size()); assertEquals(1, pd.getDependencies().size()); MojoDescriptor md = pd.getMojos().get(0); assertEquals("jar", md.getGoal()); assertEquals("mojo-description", md.getDescription()); assertEquals("runtime", md.getDependencyResolutionRequired()); assertEquals("test", md.getDependencyCollectionRequired());
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
ByteArrayOutputStream os = new ByteArrayOutputStream(1024); PrintStream ps = new PrintStream(os); ps.println("Unable to load the mojo '" + mojoDescriptor.getGoal() + "' in the plugin '" + pluginDescriptor.getId() + "'. A required class is missing: " + cause.getMessage()); pluginRealm.display(ps);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 09 16:35:21 GMT 2025 - 46.4K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
assertEquals("", e.getGoal()); e = assertThrows( MojoNotFoundException.class, () -> getExecutions(calculateExecutionPlan( session, "org.apache.maven.plugins:maven-resources-plugin:0.1:resources:toomany")), "expected a MojoNotFoundException"); assertEquals("resources:toomany", e.getGoal()); } @Test
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 22.9K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
.collect(Collectors.groupingBy(ToolchainModel::getType))); request.setNoSnapshotUpdates(context.options().suppressSnapshotUpdates().orElse(false)); request.setGoals(context.options().goals().orElse(List.of())); request.setReactorFailureBehavior(determineReactorFailureBehaviour(context)); request.setRecursive(!context.options().nonRecursive().orElse(!request.isRecursive()));
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 11 17:20:46 GMT 2025 - 28.2K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
disableInteractiveModeIfNeeded(cliRequest, request); enableOnPresentOption(commandLine, CLIManager.SUPPRESS_SNAPSHOT_UPDATES, request::setNoSnapshotUpdates); request.setGoals(commandLine.getArgList()); request.setReactorFailureBehavior(determineReactorFailureBehaviour(commandLine)); disableOnPresentOption(commandLine, CLIManager.NON_RECURSIVE, request::setRecursive);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0)