- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 54 for getDependencies (0.09 seconds)
-
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 fromCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 05 14:29:21 GMT 2025 - 6.3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalPluginBuildPlugin.java
// TODO remove once we removed default dependencies from PluginBuildPlugin project.getConfigurations().getByName("compileOnly").getDependencies().clear(); project.getConfigurations().getByName("testImplementation").getDependencies().clear(); project.getPluginManager().apply(RestTestBasePlugin.class); var extension = project.getExtensions().getByType(PluginPropertiesExtension.class);Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 5K bytes - Click Count (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();Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Feb 28 23:54:53 GMT 2024 - 1.7K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java
} public Dependency[] getDependenciesAsArray() { return getDependencies().toArray(new Dependency[0]); } public Map<String, Dependency> getDependenciesAsMap() { Map<String, Dependency> ret = new HashMap<>(); for (Dependency dep : getDependencies()) { ret.put(dep.getArtifactId(), dep); } return ret;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 16.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProject.java
.toPath(); } @Nonnull @Override public List<DependencyCoordinates> getDependencies() { return new MappedList<>(getModel().getDependencies(), this::toDependency); } @Nonnull @Override public List<DependencyCoordinates> getManagedDependencies() {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Mar 24 22:23:23 GMT 2025 - 8.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java
recordArtifacts = projectArtifactsCache.get(cacheKey); if (recordArtifacts == null) { try { Set<Artifact> resolvedArtifacts = getDependencies( project, scopesToCollect, scopesToResolve, session, aggregating, projectArtifacts); recordArtifacts = projectArtifactsCache.put(cacheKey, resolvedArtifacts);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 15.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
return profile.getActivation() == null && profile.getBuild() == null && profile.getDependencies().isEmpty() && (profile.getDependencyManagement() == null || profile.getDependencyManagement().getDependencies().isEmpty()) && profile.getDistributionManagement() == null && profile.getModules().isEmpty()
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 04 19:49:40 GMT 2026 - 22.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecycleMojo.java
return configuration; } public List<Dependency> getDependencies() { return dependencies; } public void setGoal(String goal) { this.goal = goal; } public void setConfiguration(XmlNode configuration) { this.configuration = configuration; } public void setDependencies(List<Dependency> dependencies) { this.dependencies = dependencies; }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/UpdateShasTask.java
} @TaskAction public void updateShas() throws NoSuchAlgorithmException, IOException { Set<File> shaFiles = parentTask.get().getShaFiles(); for (File dependency : parentTask.get().getDependencies()) { String jarName = dependency.getName(); File shaFile = parentTask.get().getShaFile(jarName); if (shaFile.exists() == false) {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.6K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassGraph.kt
if (keepPackages.matches(className) && !ignorePackages.matches(className)) { entryPoints.add(classDetails) } } } fun getDependencies() = classes.map { it.value.outputClassFilename to it.value.dependencies.map { it.outputClassFilename } }.toMap() } class ClassDetails(val outputClassName: String) { var visited: Boolean = false
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sat Sep 30 16:17:28 GMT 2023 - 2.6K bytes - Click Count (0)