Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 436 for subProjects (0.23 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

        def "will substitute and run build dependencies for closed projects on startup"() {
            setup:
            multiProjectBuildInRootFolder("parent", ["child1", "child2"]) {
                buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                }
                project(":child1") {
                    configurations {
                        testArtifacts
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/README.adoc

    This sample shows how to aggregate code coverage across multiple Java subprojects using link:https://www.jacoco.org/jacoco/[JaCoCo].  The link:{userManualPath}/jacoco_report_aggregation_plugin.html[jacoco-report-aggregation plugin] provides this ability when applied to the distribution project, such as an Android application or WAR subproject.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. build-logic/build.gradle.kts

    plugins {
        id("gradlebuild.collect-failed-tasks")
        id("gradlebuild.cache-miss-monitor")
    }
    
    description = "Provides plugins that are used by Gradle subprojects"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    }
    
    val clean by tasks.registering {
        val buildLogicPropertiesFile = layout.projectDirectory.file("gradle.properties")
        val rootPropertiesFile = layout.projectDirectory.file("../gradle.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 02:52:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/TaskSelectorsAndOrdinalNodeIntegrationTest.groovy

        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "build is not exponentially slower when many tasks are requested"() {
            createDirs((1..30).collect({ "sub" + it }) as String[])
            settingsFile << """
                rootProject.name = "test"
                (1..30).each {
                    include "sub" + it
                }
            """
            buildFile << """
                subprojects {
                    apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents/settings.gradle

    rootProject.name = '${rootProjectName}'
    <%
    subprojects.each { subproject ->
        out.println "include '$subproject'"
    }
    %>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 143 bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/build.gradle

        group = 'org.gradle'
    
        plugins.withType(JavaBasePlugin) {
            java.sourceCompatibility = 1.5
        }
    }
    
    subprojects {
        repositories {
            mavenCentral()
        }
    
        group = 'org.gradle'
        version = '1.0'
    }
    
    configure(subprojects.findAll{ it.path in [ ':api', ':common', ':webAppJava6', ':webAppWithVars', ':webservice' ] }){
        apply plugin: 'eclipse-wtp'
    }
    
    allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. testing/architecture-test/src/test/java/org/gradle/architecture/test/InternalNullabilityTest.java

         * See {@code subprojects/core-api/src/main/java/org/gradle/package-info.java} for an example.
         * <p>
         * Note that adding the annotation for a package in one subproject will automatically apply it for the same package in all other subprojects.
         * Therefore, it's advised to add the annotation to the package in the most appropriate subproject.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityBuildLifecycleServiceIntegrationTest.groovy

        }
    
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "accessing `tasks` from subprojects is in violation of Isolated Projects"
        )
        def "lifecycle applied build logic runs before subprojects configuration logic"() {
            given:
            settingsFile """
                include 'sub'
    
                $beforeProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/README.md

    ```
    
    Note that the samples are also used in `samples` subproject, see [`@UsesSample`](https://github.com/gradle/gradle/blob/9ade1a05427aaf04c976a0e85814b44b3435f9f9/subprojects/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UsesSample.java#L25) and [`Sample`](https://github.com/gradle/gradle/blob/903c5f2cee88c9768077d46025eaafdf65862fc8/subprojects/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java#L37).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelDslUsageIntegrationSpec.groovy

                    }
                }
    
            """
    
            then:
            succeeds "printStrings"
            output.contains "strings: [foo]"
    
            where:
            code << [
                    "subprojects",
                    "project(':a')",
                    "if (true)"
            ]
        }
    
        def "model block can be used from init script"() {
            when:
            file("init.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top