Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runtimePlatform (0.34 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def conf = conf()
            def targetPlatform = Attribute.of('targetPlatform', Platform)
            def runtimePlatform = Attribute.of('runtimePlatform', Platform)
    
            when:
            conf.getAttributes().attribute(targetPlatform, Platform.JAVA6)
            conf.getAttributes().attribute(runtimePlatform, Platform.JAVA7)
    
            then:
            conf.attributes.getAttribute(targetPlatform) == Platform.JAVA6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    // A platform variant without 'runtime-api-info' artifact such that distributions can depend on each other
    consumablePlatformVariant("runtimePlatform", listOf(coreRuntimeOnly, pluginsRuntimeOnly))
    
    // A lifecycle task to build all the distribution zips for publishing
    val buildDists by tasks.registering
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top