Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 14 for setDependencies (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/DependencyLicensesTask.java

            }
            mappings.put(from, to);
        }
    
        @InputFiles
        public FileCollection getDependencies() {
            return dependencies;
        }
    
        public void setDependencies(FileCollection dependencies) {
            this.dependencies = dependencies;
        }
    
        @Optional
        @InputDirectory
        public File getLicensesDir() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jul 26 12:16:14 GMT 2021
    - 14.3K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

            if (pluginInPom != null) {
                if (plugin.getVersion() == null) {
                    plugin.setVersion(pluginInPom.getVersion());
                }
    
                plugin.setDependencies(new ArrayList<>(pluginInPom.getDependencies()));
            }
        }
    
        private Plugin findPlugin(Plugin plugin, Collection<Plugin> plugins) {
            return findPlugin(plugin.getGroupId(), plugin.getArtifactId(), plugins);
        }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            pluginDescriptor.setRequiredMavenVersion(extractRequiredMavenVersion(c).orElse(null));
    
            pluginDescriptor.addMojos(extractMojos(c, pluginDescriptor));
    
            pluginDescriptor.setDependencies(extractComponentDependencies(c));
    
            return pluginDescriptor;
        }
    
        private String extractGroupId(PlexusConfiguration c) {
            return c.getChild("groupId").getValue();
        }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  4. 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)
  5. 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) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Sep 25 12:03:50 GMT 2025
    - 30.4K bytes
    - Click Count (0)
  6. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

            Model out = interpolator.interpolateModel(model, new File("."), createModelBuildingRequest(context), collector);
            assertCollectorState(0, 0, 0, collector);
    
            assertEquals("3.8.1", (out.getDependencies().get(0)).getVersion());
        }
    
        @Test
        public void testShouldNotInterpolateDependencyVersionWithInvalidReference() throws Exception {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Mar 30 23:08:36 GMT 2025
    - 18.2K bytes
    - Click Count (0)
  7. 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)
  8. 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)
  9. 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(),
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jan 10 08:42:00 GMT 2025
    - 12K bytes
    - Click Count (0)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    for (PluginExecution execution : plugin.getExecutions()) {
                        visit(execution);
                    }
                    // Dependencies
                    for (Dependency dependency : plugin.getDependencies()) {
                        visit(dependency);
                    }
                }
            }
    
            private void visit(PluginExecution execution) {
                if (execution != null) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 43.1K bytes
    - Click Count (0)
Back to Top