Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 164 for subproject1 (0.16 sec)

  1. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

                test.dependsOn failingTask
            """
        }
    
        private void setupSubproject() {
            def subprojectDir = file('subproject')
            goodCode(subprojectDir)
            goodTests(subprojectDir)
            file('settings.gradle') << "include 'subproject'"
        }
    
        String getMainTask() {
            'buildDashboard'
        }
    
        @ToBeFixedForConfigurationCache(because = ":buildDashboard")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    ### Testing changes
    
    After making changes, you can test your code in 2 ways:
    
    1. Run tests.
    - Run `./gradlew :<subproject>:quickTest` where `<subproject>` is the name of the subproject you've changed. 
    - For example: `./gradlew :launcher:quickTest`.
    2. Install Gradle locally and try out a change in behavior manually. 
    - Install: `./gradlew install -Pgradle_installPath=/any/path`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

            fails(requested)
            failure.assertHasDescription(message)
    
            where:
            requested            | message
            "unknown"            | "Task 'unknown' not found in root project 'broken' and its subprojects."
            "unknown:help"       | "Cannot locate tasks that match 'unknown:help' as project 'unknown' not found in root project 'broken'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

                }
    """
    
            buildA.addChildDir("b1")
            buildA.settingsFile << """
                include 'b1'
    """
            buildA.buildFile << """
                subprojects {
                    apply plugin: 'idea'
                    apply plugin: 'java'
    
                    group = 'org.buildA'
                }
    """
    
            def buildC = multiProjectBuild("buildC", ["buildA"]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. OWNERS_ALIASES

      release-engineering-approvers:
        - cpanato # SIG Technical Lead / RelEng subproject owner / Release Manager
        - jeremyrickard # SIG Chair / RelEng subproject owner / Release Manager
        - justaugustus # SIG Chair / RelEng subproject owner / Release Manager
        - puerco # SIG Technical Lead / RelEng subproject owner / Release Manager
        - saschagrunert # SIG Chair / RelEng subproject owner / Release Manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

        def "destroyer task with a dependency in another project will run before producer tasks when ordered first (type: #type)"() {
            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFoo = foo.task('cleanFoo').destroys('build/foo')
            def cleanBar = bar.task('cleanBar').destroys('build/bar').dependsOn(cleanFoo)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "project(':').subprojects"               | "subprojects of project ':'"
            "project(':').subprojects.each"          | "subprojects of project ':'"
            "rootProject.subprojects"                | "subprojects of project ':'"
            "parent.subprojects"                     | "subprojects of project ':'"
            "project(':b').project(':').subprojects" | "subprojects of project ':'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle test
    ----
    
    NOTE: Some tasks selectors, like `help` or `dependencies`, will only run the task on the project they are invoked on and not on all the subprojects.
    
    When invoking Gradle from within a subproject, the project name should be omitted:
    
    ----
    $ cd subproject
    ----
    ----
    $ gradle taskName
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

        }
    
        private val subprojectProvider = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json"))
        private val model = CIBuildModel(
            projectId = "Check",
            branch = VersionedSettingsBranch.fromDslContext(),
            buildScanTags = listOf("Check"),
            subprojects = subprojectProvider
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 10:00:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

            expect:
            createDirs("a", "b")
            file('settings.gradle') << 'include "a", "b"'
            file('build.gradle') << """
    subprojects {
        configurations {
            compile
        }
        task listDeps {
            def files = configurations.compile
            doLast { files.files }
        }
    }
    project(':a') {
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top