Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 990 for buildssa (0.36 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    ====
    
    A typical project including `buildSrc` has the following layout.
    Any code under `buildSrc` should use a package similar to application code.
    Optionally, the `buildSrc` directory can host a build script if additional configuration is needed (e.g. to apply plugins or to declare dependencies).
    
    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    .
    ├── buildSrc
    │   ├── build.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheCompositeConfigurationIntegrationTest.groovy

            buildFile << customTaskCode("root")
            file("buildSrc/build.gradle") << customTaskCode("buildSrc") << """
                jar.dependsOn customTask
            """
            file("i1/build.gradle") << customTaskCode("i1")
            file("i1/buildSrc/build.gradle") << customTaskCode("i1:buildSrc") << """
                jar.dependsOn customTask
            """
            file("i2/build.gradle") << customTaskCode("i2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/ToolingApiPropertiesLoaderCrossVersionSpec.groovy

            then:
            output.contains('system_property_available in buildSrc:                 true')
            output.contains('system_property_available in buildSrc:                 true')
            output.contains("project_property_available in buildSrc:                ${projectPropertyAvailableInBuildSrc()}")
            output.contains('system_property_available in included buildSrc:        true')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    ====
    
    [[sec:build_cache_composite]]
    === Build cache, composite builds and `buildSrc`
    
    Gradle's <<composite_builds.adoc#composite_builds,composite build feature>> allows including other complete Gradle builds into another.
    Such included builds will inherit the build cache configuration from the top level build, regardless of whether the included builds define build cache configuration themselves or not.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

    @TargetGradleVersion(">=3.1")
    class PersistentCompositeDependencySubstitutionCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        TestFile buildA
        TestFile buildB
        TestFile buildC
    
        def setup() {
    
            buildA = singleProjectBuildInRootFolder("buildA") {
                buildFile << """
                    apply plugin: 'java'
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            nestedBuild.buildIdentifier == buildIdentifier(":buildSrc")
            nestedBuild.identityPath == Path.path(":buildSrc")
    
            and:
            notifiedBuilds == [rootBuild, nestedBuild]
    
            and:
            registry.getBuild(nestedBuild.buildIdentifier).is(nestedBuild)
        }
    
        def "can add multiple buildSrc builds with different levels of nesting"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    After startup, Gradle initializes your project. Usually, Gradle only processes your settings file.
    If you have custom build logic in a `buildSrc` directory, Gradle also processes that logic.
    After building `buildSrc` once, Gradle considers it up to date. The up-to-date checks take significantly less time than logic processing.
    If your `buildSrc` phase takes too much time, consider breaking it out into a separate project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    +
    If you are developing custom Gradle plugins for your project, `buildSrc` is a convenient place to house the plugin code.
    This makes the plugins easily accessible within your project.
    
    The `buildSrc` directory is treated as an <<composite_builds.adoc#composite_build_intro,included build>>.
    
    For multi-project builds, there can be only one `buildSrc` directory, which must be in the root project directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperPropertiesLoaderCrossVersionTest.groovy

            output.contains('system_property_available in buildSrc:                 true')
            output.contains('project_property_available in buildSrc:                false')
            output.contains('overridden_by_includedBuild in buildSrc:               null')
            output.contains('system_property_available in included buildSrc:        true')
            output.contains('project_property_available in included buildSrc:       false')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         */
        IncludedBuildState addImplicitIncludedBuild(BuildDefinition buildDefinition);
    
        /**
         * Locates the buildSrc build for the given build, if present. Returns null if the given build does not have an associated buildSrc build.
         */
        @Nullable
        StandAloneNestedBuild getBuildSrcNestedBuild(BuildState owner);
    
        /**
         * Creates a new standalone nested build tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top