- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for getConfiguration (1.15 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor(); XmlNode executionConfiguration = mojoExecution.getConfiguration() != null ? mojoExecution.getConfiguration().getDom() : null; if (executionConfiguration == null) { executionConfiguration = XmlNode.newInstance("configuration"); }
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/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/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) -
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-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java
.get("key")); org.codehaus.plexus.util.xml.Xpp3Dom toolchainConfiguration = (org.codehaus.plexus.util.xml.Xpp3Dom) result.getEffectiveToolchains().getToolchains().get(0).getConfiguration(); assertEquals( interpolatedValue, toolchainConfiguration.getChild("jdkHome").getValue()); assertNotNull(result.getProblems()); assertEquals(0, result.getProblems().size());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 14K 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) -
impl/maven-cli/src/main/java/org/apache/maven/cling/extensions/BootstrapCoreExtensionManager.java
realm, Collections.singleton(artifacts.get(0).getPath().toFile()), 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.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
context.coloredOutput = false; } } context.loggerFactory = LoggerFactory.getILoggerFactory(); context.slf4jConfiguration = Slf4jConfigurationFactory.getConfiguration(context.loggerFactory); if (context.invokerRequest.effectiveVerbose()) { context.loggerLevel = Slf4jConfiguration.Level.DEBUG;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 28 13:01:07 UTC 2025 - 43.2K bytes - Viewed (0)