Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for subproject2 (0.28 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

        }
    
        def "substitutes external dependency for a subproject of the root build - #rootIsIncluded"() {
            given:
            def empty = file('empty').tap {
                it.mkdir()
            }
            mavenRepo.module("org.test", "subproject1", "2.0").publish()
            buildA.buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                    group = 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. .teamcity/subprojects.json

        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "core",
        "path": "subprojects/core",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": true
      },
      {
        "name": "core-api",
        "path": "subprojects/core-api",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    An improper way to share build logic between subprojects is _cross-project configuration_ via the link:{javadocPath}//org/gradle/api/Project.html#subprojects-groovy.lang.Closure-[`subprojects {}`] and link:{javadocPath}/org/gradle/api/Project.html#allprojects-groovy.lang.Closure-[`allprojects {}`] DSL constructs.
    
    TIP:  Avoid using `subprojects {}` and `allprojects {}`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    <3> Gradle wrapper start scripts
    <4> Settings file to define build name and subprojects
    <5> Build script for `app` subproject
    <6> Default Java source folder for `app` subproject
    <7> Default Java test source folder for `app` subproject
    =====
    
    The `authoring-tutorial` folder is the *root project directory*.
    Inside the root project directory are one or more subprojects, build scripts, and the Gradle wrapper.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    - `settings.gradle(.kts)` file representing your Gradle build including required subprojects e.g. include("app", "model", "service")
    - `build.gradle(.kts)` and source code for each subproject in corresponding subdirectories
    
    Our build currently consists of a root project called `authoring-tutorial`, which has a single `app` subproject:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    .   // <1>
    ├── app // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    }
    
    rootProject.name = 'tutorial'
    include('app')
    ----
    =====
    
    The `tutorial` root project includes the `app` subproject.
    The presence of the `include` call turns the `app` directory into a subproject.
    
    == Step 7. Understanding the Build script
    Each subproject contains its own `build.gradle(.kts)` file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

        @IntegrationTestTimeout(value = 60, onlyIf = { GradleContextualExecuter.embedded })
        def "can query dependencies with configure on demand enabled"() {
            def subprojects = ["a", "b"]
            multiProjectBuild("outputRegistry", subprojects)
            subprojects.each { projectName ->
                file("${projectName}/build.gradle") << """
                    plugins {
                        id("java-library")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. settings.gradle.kts

            subproject("base-asm")
            subproject("base-services")
            subproject("build-configuration")
            subproject("build-operations")
            subproject("build-option")
            subproject("build-process-services")
            subproject("build-profile")
            subproject("build-state")
            subproject("cli")
            subproject("client-services")
            subproject("concurrent")
            subproject("daemon-main")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    BUILD SUCCESSFUL in 1s
    16 actionable tasks: 5 executed, 11 up-to-date
    ----
    
    So far, we have looked at tasks in individual subprojects, which is useful for local development when you work on code in one subproject.
    
    With this setup, developers only need to know that they can call Gradle with `:subproject-name:tasks` to see which tasks are available and useful for them.
    
    [[sec:global_lifecycle_tasks]]
    == Global lifecycle tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top