Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,960 for dependency_b (0.49 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignmentWithPlatform/tests/align-dependency-versions.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
    - 65 bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/ApiMavenResolver.groovy

            /**
             * Returns a list of all artifacts that are direct transitive dependencies of the resolved dependency.
             *
             * <p>Only a subset of the graph is returned.</p>
             */
            List<String> getFirstLevelDependencies() {
                // The root has a single child, where the first child is our requested dependency's node
                def requestedNode = root.children.first()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/dependency_management_for_java_projects.adoc

    One such type is a _module dependency_.
    A <<declaring_dependencies.adoc#sub:module_dependencies,module dependency>> represents a dependency on a module with a specific version built outside the current build.
    Modules are usually stored in a repository, such as Maven Central, a corporate Maven or Ivy repository, or a directory in the local file system.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

            repoModule.assertPublished()
            repoModule.assertApiDependencies("group:projectA:", "group:projectB:1.0")
            def dependency = repoModule.parsedPom.scopes.compile.dependencies.get("group:projectA:")
            dependency.groupId == "group"
            dependency.artifactId == "projectA"
            dependency.version == ""
    
            where:
            versionType | dependencyNotation
            "empty"     | "'group:projectA'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_errors.txt

    cmp go.mod.orig go.mod
    
    cd importsyntax
    
    
    # A syntax error in a dependency prevents the compiler from needing that
    # dependency's imports, so 'go get' should not report an error when those
    # imports cannot be resolved: it has all of the dependencies that the compiler
    # needs, and the user did not request to run the compiler.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.Nullable;
    import org.apache.maven.api.model.Dependency;
    
    /**
     * A dependency's {@code Type} is uniquely identified by a {@code String},
     * and semantically represents a known <i>kind</i> of dependency.
     * <p>
     * It provides information about the file type (or extension) of the associated artifact,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

                }
            }
    
            where:
            thing                    | _
            "dependencies"           | _
            "dependency constraints" | _
        }
    
        def "attribute matching is used to select a variant of the dependency's target if the dependency was added by a rule"() {
            given:
            repository {
                'org.test:moduleA:1.0' {
                    dependsOn 'org.test:moduleB:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    |identifier of an organization
    |`com.google.guava`
    |`org.junit.jupiter`
    
    |Name
    |dependency identifier
    |`guava`
    |`junit-jupiter-api`
    
    |Version
    |version # to import
    |`32.1.2-jre`
    |`5.9.1`
    |===
    
    == Step 3. Understanding Transitive Dependencies
    A _transitive dependency_ is a dependency of a dependency.
    
    For our `guava` dependency to work, it requires a library called `failureaccess`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top