- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for setDependencies (0.07 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java
} public void setArtifactExists(boolean artifactExists) { this.artifactExists = artifactExists; } public Collection<ArtifactMetadata> getDependencies() { return dependencies; } public void setDependencies(Collection<ArtifactMetadata> dependencies) { this.dependencies = dependencies; } public String getArtifactUri() { return artifactUri; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java
*/ @Nonnull Map<Dependency, Path> getDependencies(); /** * Returns the Java module name of the dependency at the given path. * The given dependency should be one of the paths returned by {@link #getDependencies()}. * The module name is extracted from the {@code module-info.class} file if present, otherwise from
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 05 14:29:21 UTC 2025 - 6.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
} if (model != null) { pomArtifact = artifact; dependencies = model.getDependencies(); DependencyManagement dependencyManagement = model.getDependencyManagement(); managedDependencies = dependencyManagement == null ? null : dependencyManagement.getDependencies(); MavenSession session = legacySupport.getSession(); if (session != null) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 30.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Plugin.java
@Nonnull List<Lifecycle> getLifecycles(); @Nonnull ClassLoader getClassLoader(); @Nonnull Artifact getArtifact(); @Nonnull default Collection<Dependency> getDependencies() { return getDependenciesMap().values(); } @Nonnull Map<String, Dependency> getDependenciesMap();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java
List<Dependency> dependencies = new ArrayList<>(); if (request.getArtifact() instanceof ArtifactWithDependencies artifactWithDependencies) { dependencies = artifactWithDependencies.getDependencies(); } else { Artifact pomArtifact = createProjectArtifact( request.getArtifact().getGroupId(), request.getArtifact().getArtifactId(),
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 12K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java
Optional<Project> getProject(); @Nonnull Optional<Artifact> getRootArtifact(); @Nonnull Optional<DependencyCoordinates> getRoot(); @Nonnull Collection<DependencyCoordinates> getDependencies(); @Nonnull Collection<DependencyCoordinates> getManagedDependencies(); boolean getVerbose(); @Nonnull PathScope getPathScope(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 20.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java
return resolved; } /* Logic for transitive global exclusions List<String> exclusions = new ArrayList<String>(); for ( Dependency d : project.getDependencies() ) { if ( d.getExclusions() != null ) { for ( Exclusion e : d.getExclusions() ) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.4K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
d.setSystemPath(systemPath); } if (exclusion != null) { d.addExclusion(exclusion); } project.getDependencies().add(d); return this; } // Plugins // public ProjectBuilder addPlugin(Plugin plugin) { project.getBuildPlugins().add(plugin);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 12.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
*/ @Nonnull Path getBasedir(); /** * {@return the project direct dependencies (directly specified or inherited)}. */ @Nonnull List<DependencyCoordinates> getDependencies(); /** * {@return the project managed dependencies (directly specified or inherited)}. */ @Nonnull List<DependencyCoordinates> getManagedDependencies(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Feb 27 11:07:03 UTC 2025 - 10.6K bytes - Viewed (0)