Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for CompileClasspath (0.32 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

    }
    
    task checkCompileClasspath {
        def compileClasspath = configurations.compileClasspath
        def expectedFiles = provider {
            [file('${normaliseFileSeparators(compileOnlyModule.artifactFile.path)}'), file('${normaliseFileSeparators(implementationModule.artifactFile.path)}')] as Set
        }
        doLast {
            assert compileClasspath.files == expectedFiles.get()
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

                whenTerse """Dependency verification failed for configuration ':compileClasspath'
    One artifact failed verification: foo-1.0.jar (org:foo:1.0) from repository maven
    This can indicate that a dependency has been compromised. Please carefully verify the checksums."""
    
                whenVerbose """Dependency verification failed for configuration ':compileClasspath':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

            "configurations.compileClasspath.files"                                                                      | true        | true        | false
            "configurations.compileClasspath.iterator().next()"                                                          | true        | true        | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReportReplaced.out

    log4j:log4j:1.2.16 -> org.slf4j:log4j-over-slf4j:1.7.10
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    org.slf4j:log4j-over-slf4j:1.7.10
    \--- compileClasspath
    
    org.slf4j:slf4j-log4j12:1.6.1
      Variant compile:
        | Attribute Name                 | Provided | Requested    |
        |--------------------------------|----------|--------------|
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReport.out

                   Cannot select module with conflict on capability 'log4j:log4j:1.2.16' also provided by [org.slf4j:log4j-over-slf4j:1.7.10(compile)]
    
    log4j:log4j:1.2.16 FAILED
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    org.slf4j:log4j-over-slf4j:1.7.10 FAILED
       Failures:
          - Could not resolve org.slf4j:log4j-over-slf4j:1.7.10.
              - Module 'org.slf4j:log4j-over-slf4j' has been rejected:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/ArtifactResolutionQueryIntegrationTest.groovy

                    implementation 'group:artifact:1.0'
                }
                task query {
                    doLast {
                        assert configurations.compileClasspath.files
                        def id = configurations.compileClasspath.incoming.resolutionResult
                            .allDependencies.first().selected.id
                        dependencies.createArtifactResolutionQuery()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryCrossProjectTargetJvmVersionIntegrationTest.groovy

                }
            """
            buildFile << """
                configurations.compileClasspath.attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 6)
            """
    
            when:
            fails ':checkDeps'
    
            then:
            failure.assertHasErrorOutput("""> Could not resolve all dependencies for configuration ':compileClasspath'.
       > Could not resolve project :producer.
         Required by:
             project :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

            description = "Unpack the Kotlin JavaScript standard library"
            val outputDir = file("$buildDir/$name")
            inputs.property("compileClasspath", configurations.compileClasspath.get())
            outputs.dir(outputDir)
            doLast {
                val kotlinStdLibJar = configurations.compileClasspath.get().single {
                    it.name.matches(Regex("kotlin-stdlib-js-.+\\.jar"))
                }
                copy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

    """
            }
        }
    
        def "fails to show all variant details for compileClasspath if it was already resolved"() {
            given:
            settingsFile << "include 'a'"
            file('a/build.gradle') << """
                apply plugin: 'java-library'
    
                dependencies {
                }
    
                configurations.compileClasspath.resolve()
    
                task insight(type: DependencyInsightReportTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    planet:mercury:1.0.2
    \\--- planet:jupiter:5.0.0
         \\--- compileClasspath
    
    planet:mercury:1.0.1 -> 1.0.2
    \\--- planet:venus:2.0.1
         +--- planet:earth:3.0.0 (requested planet:venus:2.0.0)
         |    \\--- compileClasspath
         +--- planet:mars:4.0.0
         |    \\--- compileClasspath
         \\--- planet:jupiter:5.0.0 (requested planet:venus:1.0)
              \\--- compileClasspath
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top