Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for resolveRuntimeClasspath (0.29 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/tests/artifactTransformMinify.sample.conf

    executable: gradle
    args: resolveRuntimeClasspath
    expected-output-file: artifactTransformMinify.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 129 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/tests/artifactTransformMinify.out

    > Task :producer:processResources NO-SOURCE
    > Task :producer:classes
    > Task :producer:jar
    
    > Transform producer.jar (project :producer) with Minify
    Nothing to minify - using producer.jar unchanged
    
    > Task :resolveRuntimeClasspath
    Minifying guava-27.1-jre.jar
    Nothing to minify - using listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar unchanged
    Nothing to minify - using jsr305-3.0.2.jar unchanged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 819 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/kotlin/build.gradle.kts

    dependencies {                                 // <4>
        implementation("com.google.guava:guava:27.1-jre")
        implementation(project(":producer"))
    }
    
    tasks.register<Copy>("resolveRuntimeClasspath") { // <5>
        from(configurations.runtimeClasspath)
        into(layout.buildDirectory.dir("runtimeClasspath"))
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/groovy/build.gradle

    dependencies {                                 // <4>
        implementation('com.google.guava:guava:27.1-jre')
        implementation(project(':producer'))
    }
    
    tasks.register("resolveRuntimeClasspath", Copy) {// <5>
        from(configurations.runtimeClasspath)
        into(layout.buildDirectory.dir("runtimeClasspath"))
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    <5> Add task that requires the transformed artifacts
    
    You can now see what happens when we run the `resolveRuntimeClasspath` task which resolves the `runtimeClasspath` configuration.
    Observe that Gradle transforms the project dependency before the `resolveRuntimeClasspath` task starts.
    Gradle transforms the binary dependencies when it executes the `resolveRuntimeClasspath` task.
    
    .Output when resolving the runtimeClasspath configuration
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top