Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 478 for subproject1 (0.19 sec)

  1. .teamcity/test-buckets.json

    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"dependency-management"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"configuration-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"tooling-api"
    				]
    			},
    			{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K 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. build-logic/build-update-utils/src/main/kotlin/gradlebuild.generate-subprojects-info.gradle.kts

    Jendrik Johannes <******@****.***> 1607501645 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 254 bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/TemplateFactory.java

                this.fileName = fileName;
            }
    
            @Override
            public void subproject(String subproject) {
                this.subproject = subproject;
            }
    
            @Override
            public void sourceSet(String name) {
                this.sourceSet = name;
            }
    
            @Override
            public void language(Language language) {
                this.language = language;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:38:39 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top