Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,032 for buildssa (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. Jenkinsfile

    def buildOs = 'linux'
    def buildJdk = '17'
    def buildMvn = '3.8.x'
    def runITsOses = ['linux']
    def runITsJdks = ['17', '21']
    def runITsMvn = '3.8.x'
    def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
    def tests
    
    try {
    
    def osNode = jenkinsEnv.labelForOS(buildOs)
    node(jenkinsEnv.nodeSelection(osNode)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/WorkspaceScopeId.java

     *
     * It is effectively the root dir of a build.
     * That is, two builds with the same root dir share the same workspace.
     *
     * In practice, this generally maps to what users would think of as “checkout” of a project.
     * Builds of the same checkout over time will share the same workspace ID.
     *
     * This ID is persisted in the root build's project cache dir.
     * If this cache directory is destroyed, a new ID will be issued.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

        }
    
        /**
         * the `buildSrc` directory behaves like an included build. As such, it may have its own settings,
         * so repositories declared in the main build shouldn't be visible to buildSrc.
         */
        def "repositories declared in settings shouldn't be used to resolve dependencies in buildSrc"() {
            repository {
                'org:module:1.0'()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskFailureIntegrationTest.groovy

                broken!
            """
            buildA.buildFile << """
                task other {
                    dependsOn configurations.compileClasspath
                }
                classes.dependsOn other
            """
            buildA.file("src/main/java/A.java") << """
                class A { }
            """
    
            when:
            fails(buildA, "assemble")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 08 20:51:23 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildParallelIntegrationTest.groovy

        @Rule BlockingHttpServer server = new BlockingHttpServer()
    
        def "works when number of included builds exceeds max-workers --max-workers=#maxWorkers"() {
            def totalIncludedBuilds = 5*maxWorkers
            buildA.buildFile << """
                task delegate {
                    dependsOn gradle.includedBuilds*.task(":someTask")
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/structuring-builds-4.png

    structuring-builds-4.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 104.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/RootBuildLifecycleListener.java

    /**
     * A listener that is notified when a root build is started and completed. No more than one root build may run at a given time.
     *
     * A root build may contain zero or more nested builds, such as `buildSrc` or included builds.
     *
     * This listener type is available to services from build tree up to global services.
     */
    @EventScope(Scope.BuildTree.class)
    @StatefulListener
    public interface RootBuildLifecycleListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top