Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 164 for subProjects (0.19 sec)

  1. .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)
  2. 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)
  3. 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)
  4. .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)
  5. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    <4> Settings file to define build name and subprojects
    <5> Build script of _buildSrc_ to configure dependencies of the build logic
    <6> Source folder for _convention plugins_ written in Groovy or Kotlin DSL
    <7> Build script of the three subprojects - `app`, `list` and `utilities`
    <8> ${language.raw} source folders in each of the subprojects
    <9> ${language.raw} test source folders in the subprojects
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    This is sometimes referred to as a multi-module project.
    Gradle refers to modules as subprojects.
    
    A multi-project build consists of one root project and one or more subprojects.
    
    [[sec:project_structure]]
    == Multi-Project structure
    
    The following represents the structure of a multi-project build that contains two subprojects:
    
    image::multi-project-structure.png[]
    
    The directory structure should look as follows:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            given:
            createDirs("subprojectA", "subprojectB", "subprojectC", "subprojectD")
            settingsFile << """
    rootProject.name = "root"
    include 'subprojectA'
    include 'subprojectB'
    include 'subprojectC'
    include 'subprojectD'
    """
    
            buildFile << """
    configure(project(':subprojectA')) {
        apply plugin: 'java'
        apply plugin: 'idea'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

            def body = ""
            def isParent = subProjectNumber == null || config.subProjects == 0
            def hasSources = subProjectNumber != null || config.subProjects == 0
            if (isParent) {
                if (config.subProjects != 0) {
                    body += """
                        <modules>
                            ${(0..config.subProjects - 1).collect { "<module>project$it</module>" }.join("\n                ")}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top