Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for all_dependencies (0.14 sec)

  1. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/DependenciesAwareVersionCatalogBuilder.java

            if (shouldAmendModel) {
                DependencySet allDependencies = dependenciesConfiguration.getAllDependencies();
                DependencyConstraintSet allDependencyConstraints = dependenciesConfiguration.getAllDependencyConstraints();
                Set<ModuleIdentifier> seen = new HashSet<>();
                collectDependencies(allDependencies, seen);
                collectConstraints(allDependencyConstraints, seen);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractor.java

        }
    
        private void pushUnsatisfiedDependencies(Iterable<? extends DefaultModelSchemaExtractionContext<?>> allDependencies, Queue<DefaultModelSchemaExtractionContext<?>> dependencyQueue, final ModelSchemaCache cache) {
            Iterables.addAll(dependencyQueue, Iterables.filter(allDependencies, new Predicate<ModelSchemaExtractionContext<?>>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/platforms/test-platform/build.gradle

    plugins {
        id('java-platform')
    }
    
    group = 'com.example.platform'
    
    // allow the definition of dependencies to other platforms like the JUnit 5 BOM
    javaPlatform.allowDependencies()
    
    dependencies {
        api(platform('org.junit:junit-bom:5.7.1'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 247 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-platform/quickstart/kotlin/build.gradle.kts

            runtime("org.postgresql:postgresql:42.2.5")
        }
    }
    // end::constraints[]
    
    // tag::platform[]
    // tag::allow-dependencies[]
    javaPlatform {
        allowDependencies()
    }
    // end::allow-dependencies[]
    
    dependencies {
        api(platform("com.fasterxml.jackson:jackson-bom:2.9.8"))
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 554 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    ====
    include::sample[dir="kotlin",files="my-app/app/build.gradle.kts[tags=app_dependencies]"]
    include::sample[dir="groovy",files="my-app/app/build.gradle[tags=app_dependencies]"]
    ====
    
    == Using command-line composite build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolutionResult.java

         */
        void allDependencies(Action<? super DependencyResult> action);
    
        /**
         * Applies given closure for each dependency.
         * An instance of {@link DependencyResult} is passed as parameter to the closure.
         *
         * @param closure - closure that is applied for each dependency
         */
        void allDependencies(@DelegatesTo(DependencyResult.class) Closure closure);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 24 19:03:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            new Output("bin")]
        final projectDependency = [customEntries[0]]
        final jreContainer = [customEntries[1]]
        final outputLocation = [customEntries[6]]
        final srcFolder = [customEntries[3]]
    
        final allDependencies = [customEntries[0], customEntries[2], customEntries[4]]
    
        private final Classpath classpath = new Classpath(new XmlTransformer(), fileReferenceFactory)
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. subprojects/core-platform/build.gradle.kts

    plugins {
        id("gradlebuild.platform")
    }
    
    description = "Defines which JARs go into the core part (libs/*.jar) of a Gradle distribution (NOT libs/plugins/*.jar)."
    
    javaPlatform.allowDependencies()
    
    dependencies {
        runtime(project(":installation-beacon"))
        runtime(project(":api-metadata"))
        runtime(project(":daemon-server")) {
            because("This is the Gradle daemon implementation, which transitively depends on all other core projects.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/platforms/product-platform/build.gradle

    plugins {
        id('java-platform')
    }
    
    group = 'com.example.platform'
    
    // allow the definition of dependencies to other platforms like the Spring Boot BOM
    javaPlatform.allowDependencies()
    
    dependencies {
        api(platform('org.springframework.boot:spring-boot-dependencies:2.7.8'))
    
        constraints {
            api('org.apache.juneau:juneau-marshall:8.2.0')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 361 bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

                        configurations.compileClasspath.incoming.resolutionResult.allDependencies.collect {
                            it.toString()
                        } as Set
                    }
                    def incomingRuntimeClasspath = provider {
                        configurations.runtimeClasspath.incoming.resolutionResult.allDependencies.collect {
                            it.toString()
                        } as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top