Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sourceSets (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    * Project extensions and conventions (such as `sourceSets`), and extensions on them
    * Extensions on the `dependencies` and `repositories` containers, and extensions on them
    * Elements in the `tasks` and `configurations` containers
    * Elements in <<kotdsl:containers,project-extension containers>> (for example the source sets contributed by the Java Plugin that are added to the `sourceSets` container)
    
    For the main project settings script:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ----
    plugins {
        id("java-library")
    }
    
    sourceSets {
        create("feature")
    }
    
    java {
        registerFeature("feature") {
            usingSourceSet(sourceSets["feature"])
        }
    }
    ----
    ======
    [.multi-language-sample]
    ======
    .build.gradle
    [source,groovy]
    ----
    plugins {
        id("java-library")
    }
    
    sourceSets {
        feature
    }
    
    java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.tasks.SourceSet.java(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (SourceSet.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top