- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for setGoals (0.19 sec)
-
compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java
{ PluginExecution target = new PluginExecution(); target.setGoals( Arrays.asList( "first", "second", "third" ) ); PluginExecution source = new PluginExecution(); source.setGoals( Arrays.asList( "first", "second", "third" ) ); modelMerger.mergePluginExecution( target, source, true, null ); assertThat( target.getGoals(), contains( "first", "second", "third" ) ); } @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
copy.setInstallationToolchainsFile(original.getInstallationToolchainsFile()); copy.setBaseDirectory((original.getBaseDirectory() != null) ? new File(original.getBaseDirectory()) : null); copy.setGoals(original.getGoals()); copy.setRecursive(original.isRecursive()); copy.setPom(original.getPom()); copy.setSystemProperties(original.getSystemProperties());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 31.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
.setLocalRepository(getLocalRepository()) .setRemoteRepositories(getRemoteRepositories()) .setPluginArtifactRepositories(getPluginArtifactRepositories()) .setGoals(Arrays.asList("package")); if (pom != null) { request.setMultiModuleProjectDirectory(pom.getParentFile()); } return request; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
// Timing (remove this) MavenExecutionRequest setStartTime(Date start); Date getStartTime(); // Goals MavenExecutionRequest setGoals(List<String> goals); List<String> getGoals(); // Properties /** * Sets the system properties to use for interpolation and profile activation. The system properties are collected
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 18.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java
} MavenOptions options = context.invokerRequest.options(); request.setNoSnapshotUpdates(options.suppressSnapshotUpdates().orElse(false)); request.setGoals(options.goals().orElse(List.of())); request.setReactorFailureBehavior(determineReactorFailureBehaviour(context)); request.setRecursive(!options.nonRecursive().orElse(!request.isRecursive()));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
} this.projects = projects; } public ArtifactRepository getLocalRepository() { return request.getLocalRepository(); } public List<String> getGoals() { return request.getGoals(); } /** * Gets the user properties to use for interpolation and profile activation. The user properties have been
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.6K bytes - Viewed (0) -
cmd/peer-s3-client.go
DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error 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) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:26:05 UTC 2024 - 15.4K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
} public MojoDescriptor(PluginDescriptor pd, org.apache.maven.api.plugin.descriptor.MojoDescriptor md) { this(); this.setPluginDescriptor(pd); this.setGoal(md.getGoal()); this.setExecuteGoal(md.getExecuteGoal()); this.setExecuteLifecycle(md.getExecuteLifecycle()); this.setExecutePhase(md.getExecutePhase()); this.setDeprecated(md.getDeprecated());
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/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
throws PlexusConfigurationException { MojoDescriptor mojo = new MojoDescriptor(); mojo.setPluginDescriptor(pluginDescriptor); mojo.setGoal(c.getChild("goal").getValue()); mojo.setImplementation(c.getChild("implementation").getValue()); PlexusConfiguration langConfig = c.getChild("language"); if (langConfig != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0)