Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,650 for dependency_b (0.21 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

            /**
             * Adds the specified direct dependency.
             *
             * @param dependency the dependency to add, may be {@code null}
             * @return this request for chaining, never {@code null}
             */
            @Nonnull
            public DependencyResolverRequestBuilder dependency(@Nullable DependencyCoordinate dependency) {
                if (dependency != null) {
                    if (this.dependencies.isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_platform_plugin.adoc

    This means that all constraints listed in a platform would not add a dependency unless another component brings it in: they can be seen as _recommendations_.
    
    [NOTE]
    ====
    For example, if a platform declares a constraint on `org:foo:1.1`, and that nothing else brings in a dependency on `foo`, `foo` will _not_ appear in the graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

                if (!dependency.getAttributes().isEmpty()) {
                    warnings.addUnsupported(String.format("%s:%s:%s declared with Gradle attributes", dependency.getGroup(), dependency.getName(), dependency.getVersion()));
                }
                if (!dependency.getRequestedCapabilities().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/tests/exclude-transitive-for-dependency.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-artifactOnly/tests/artifact-only-dependency-declaration.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 31 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    - `group`: The group of the dependency.
    - `module`: The module of the dependency.
    - `version`: optional. The version constraint of the dependency.
    - `excludes`: optional. Defines the exclusions that apply to this dependency. 
    - `reason`: optional. A explanation why the dependency is used. Can typically be used to explain why a specific version is requested.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

    """
    
            when:
            fails("impl:check")
    
            then:
            failure.assertHasCause "Cannot change dependencies of dependency configuration ':api:conf' after it has been included in dependency resolution"
        }
    
        @Issue(["GRADLE-3330", "GRADLE-3362"])
        def "project dependency can resolve multiple artifacts from target project that are differentiated by archiveFileName only"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-disableForDependency/tests/disabling-transitive-dependency-resolution.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-constraintsFromBOM/tests/importing-dependency-constraints-from-bom.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def configuration = conf()
            def dependency = Mock(Dependency)
            def projectDependency = Mock(ProjectDependency.class);
    
            when:
            configuration.dependencies.add(dependency)
            configuration.dependencies.add(projectDependency)
    
            then:
            configuration.dependencies as Set == [dependency, projectDependency] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top