- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for setConfiguration (0.07 sec)
-
impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java
Xpp3Dom wagonProvider = new Xpp3Dom("wagonProvider"); wagonProvider.setValue("httpclient"); configuration.addChild(wagonProvider); server.setConfiguration(configuration); MavenExecutionRequest request = new DefaultMavenExecutionRequest(); request.setLocalRepository(getLocalRepository()); List<Server> servers = new ArrayList<>();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 19.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
new MojoExecution(forkedMojoDescriptor, mojoExecution.getExecutionId()); XmlNode forkedConfiguration = execution.getConfiguration(); forkedExecution.setConfiguration(forkedConfiguration); mojoExecutionConfigurator(forkedExecution).configure(project, forkedExecution, true);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 26.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java
plugin.setVersion(extension.getVersion()); XmlNode configuration = extension.getDelegate().getConfiguration(); if (configuration != null) { plugin.setConfiguration(new Xpp3Dom(configuration)); } extensionPlugins.add(plugin); } for (Plugin plugin : build.getPlugins()) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10.8K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java
configuration.addChild(configurationChild); ToolchainModel toolchain = new ToolchainModel(); toolchain.setType("TYPE"); toolchain.setProvides(props); toolchain.setConfiguration(configuration); PersistedToolchains persistedToolchains = new PersistedToolchains(); persistedToolchains.setToolchains(Collections.singletonList(toolchain));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 14K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java
plugin.setLocation("version", new InputLocation(12, 34, defaultBindings)); MojoExecution result = new MojoExecution(plugin, goal, executionId); result.setConfiguration(XmlNode.newInstance(executionId + "-" + goal)); result.setMojoDescriptor(mojoDescriptor); result.setLifecyclePhase(mojoDescriptor.getPhase()); return result; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
assertNull(execution.getConfiguration()); lifeCycleExecutionPlanCalculator.setupMojoExecution( session, session.getCurrentProject(), execution, new HashSet<>()); assertNotNull(execution.getConfiguration()); assertEquals("1.0", execution.getConfiguration().getChild("version").getAttribute("default-value")); } @Test
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 22.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
authBuilder.addPrivateKey(server.getPrivateKey(), server.getPassphrase()); authSelector.add(server.getId(), authBuilder.build()); if (server.getConfiguration() != null) { XmlNode dom = server.getDelegate().getConfiguration(); List<XmlNode> children = dom.children().stream() .filter(c -> !"wagonProvider".equals(c.name()))
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 17 05:56:35 UTC 2025 - 25.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 43.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
} catch (Exception e) { throw new PluginContainerException(mojoDescriptor, pluginRealm, "Unable to lookup Mojo", e); } XmlNode dom = mojoExecution.getConfiguration() != null ? mojoExecution.getConfiguration().getDom() : null; PlexusConfiguration pomConfiguration; if (dom == null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 16:35:21 UTC 2025 - 46.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java
realm, Collections.singleton(artifacts.get(0).getFile()), extension.getGroupId() + ":" + extension.getArtifactId(), extension.getConfiguration()); } private List<Artifact> resolveExtension( CoreExtension extension, RepositorySystemSession repoSession, List<RemoteRepository> repositories,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 13.3K bytes - Viewed (0)