Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for CompileClasspath (0.21 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ----
    Execution failed for task ':compileJava'.
    > Dependency verification failed for configuration ':compileClasspath':
        - On artifact commons-logging-1.2.jar (commons-logging:commons-logging:1.2) in repository 'MavenRepo': checksum is missing from verification metadata.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    **Note:** The `@Classpath` annotation was introduced in Gradle 3.2. To stay compatible with earlier Gradle versions, classpath properties should also be annotated with `@InputFiles`.
    
    | `@link:{javadocPath}/org/gradle/api/tasks/CompileClasspath.html[CompileClasspath]`
    | `Iterable<File>`*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            result.assertTasksNotSkipped(":b:producer", ":a:resolve")
            transformed("b.jar")
            outputContains("result = [b.jar.green, c.jar.green]")
    
            where:
            annotation << ["Classpath", "CompileClasspath"]
        }
    
        def "honors @#annotation on input artifact property with project artifact file when caching"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

    import com.google.common.collect.Iterables
    import com.google.common.collect.Multiset
    import groovy.test.NotYetImplemented
    import groovy.transform.Canonical
    import org.gradle.api.tasks.Classpath
    import org.gradle.api.tasks.CompileClasspath
    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.test.precondition.Requires
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    configurations.compileClasspath.files // equivalent to configurations.compileClasspath.get().files
    configurations.compileClasspath.singleFile // equivalent to configurations.compileClasspath.get().singleFile
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                        }
                        outgoing.capability("org:optional-feature:\${version}")
                    }
                    compileClasspath.extendsFrom(optionalFeatureImplementation)
                }
                artifacts {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    }
                }
    
                tasks.register('printArtifactIds', PrintArtifactIds) {
                    artifactIds.addAll(
                      configurations
                          .compileClasspath
                          .incoming.artifactView {
                              attributes.attribute(Attribute.of('artifactType', String), 'jar')
                          }.artifacts.resolvedArtifacts.map { artifacts ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            if ($constraintsOptional) {
                implementation 'org:optional:1.0'
            }
        }
    }
    """
            when:
            succeeds 'dependencies', '--configuration', 'compileClasspath'
    
            then:
            outputDoesNotContain('org:optional')
    
            where:
            dependsOptional | constraintsOptional
            true            | true
            true            | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    There are a couple of other facets of the example you should take note of:
    
     * `+=` allows you to append paths and collections of paths to `compileClasspath` and `runtimeClasspath` instead of overwriting them
     * If you want to use the convention-based configurations, such as `intTestImplementation`, you _must_ declare the dependencies _after_ the new source set
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top