Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for classesPath (0.08 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/report-aggregation/src/main/groovy/com.example.report-aggregation.gradle

    def aggregate = configurations.create('aggregate') {
        visible = false
        canBeResolved = false
        canBeConsumed = false
    }
    
    // Resolvable configuration to resolve the classes of all dependencies
    def classesPath = configurations.create('classesPath') {
        visible = false
        canBeConsumed = false
        extendsFrom(aggregate)
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/report-aggregation/src/main/kotlin/com.example.report-aggregation.gradle.kts

    val aggregate by configurations.creating {
        isVisible = false
        isCanBeResolved = false
        isCanBeConsumed = false
    }
    
    // Resolvable configuration to resolve the classes of all dependencies
    val classesPath by configurations.creating {
        isVisible = false
        isCanBeConsumed = false
        extendsFrom(aggregate)
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top