Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 143 for subproject1 (0.3 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'root'
                include '1', '2'
            """
            buildFile << """
                subprojects {
                    task otherBuild(type:GradleBuild) {
                        dir = "\${rootProject.file('subprojects')}"
                        tasks = ['log']
                        buildName = project.name + "nested"
                        def startEvent = project.name + "-started"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Expand that row to see where the build applied this script.
    
    image::performance/script-b-application.png[title="Showing the application of script-b.gradle to the build"]
    
    You can see that subproject `:app1` applied the script once, from inside of that subproject's `build.gradle` file.
    
    == Profile report
    
    If you prefer not to use build scans, you can generate an HTML report in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/api/plugins/BuildSrcPluginIntegrationTest.groovy

                    }
                }
                dependencies {
                    runtimeOnly project(":subproject")
                }
            """
            file("buildSrc/settings.gradle") << """
                include 'subproject'
            """
            buildFile << """
                apply plugin: MyPlugin
                apply plugin: MyPluginSub
                // nuke buildSrc classes so we can't use them
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. .github/CODEOWNERS

    testing/internal-performance-testing/       @gradle/bt-developer-productivity
    testing/internal-testing/                   @gradle/bt-developer-productivity
    
    # Release coordination
    subprojects/core-platform/              @gradle/bt-support
    subprojects/distributions-dependencies/ @gradle/bt-support
    subprojects/distributions-full/         @gradle/bt-support
    testing/performance/                    @gradle/bt-support
    testing/smoke-test/                     @gradle/bt-support
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

            then:
            project.languageLevel.level == "JDK_1_5"
            project.jdkName == '1.6'
        }
    
        def "provides all modules"() {
    
            file('build.gradle').text = '''
    subprojects {
        apply plugin: 'java'
    }
    '''
            file('settings.gradle').text = "include 'api', 'impl'"
    
            when:
            IdeaProject project = loadToolingModel(IdeaProject)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    link:../samples/sample_convention_plugins.html[**Convention plugins**] are plugins used to share build logic between subprojects (modules).
    Users can wrap common logic in a convention plugin.
    For example, a code coverage plugin used as a convention plugin can survey code coverage for the _entire project_ and _not_ just a specific subproject.
    
    TIP: Gradle highly recommends the use of Convention plugins.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiIdeaModelCrossVersionSpec.groovy

    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        def "Provides target module name for module dependencies"() {
    
    
            file('build.gradle').text = """
    subprojects {
        apply plugin: 'java'
    }
    
    project(':impl') {
        apply plugin: 'idea'
    
        dependencies {
            ${implementationConfiguration} project(':api')
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top