- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getChildren (0.07 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
throws PlexusConfigurationException { List<MojoDescriptor> mojos = new ArrayList<>(); PlexusConfiguration[] mojoConfigurations = c.getChild("mojos").getChildren("mojo"); for (PlexusConfiguration component : mojoConfigurations) { mojos.add(buildComponentDescriptor(component, pluginDescriptor)); } return mojos; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
if (server.getConfiguration() != null) { XmlNode dom = server.getDelegate().getConfiguration(); List<XmlNode> children = dom.getChildren().stream() .filter(c -> !"wagonProvider".equals(c.getName())) .collect(Collectors.toList()); dom = new XmlNodeImpl(dom.getName(), null, null, children, null);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 25.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java
archives.add(new JApiCmpWorkerAction.Archive(resolvedArtifact.getFile(), version)); } for (ResolvedDependency dependency : resolvedDependency.getChildren()) { collectArchives(archives, dependency); } } public void richReport(Action<? super RichReport> configureAction) { if (!getRichReport().isPresent()) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Apr 26 10:58:32 UTC 2023 - 13.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
artifact.setDependencyTrail(nodeTrail); artifacts.add(artifact); } toArtifacts(artifacts, node.getChildren(), nodeTrail, filter); } } public static Artifact toArtifact(org.apache.maven.artifact.Artifact artifact) { if (artifact == null) { return null; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java
context.logger.error(line); } currentColor = nextColor; } indent += " "; for (ExceptionSummary child : summary.getChildren()) { logSummary(context, child, references, indent); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.8K bytes - Viewed (0)