Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 478 for subproject1 (0.14 sec)

  1. 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)
  2. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPluginRules.java

                ProjectRegistry<ProjectInternal> projectRegistry = Cast.uncheckedCast(serviceRegistry.get(DefaultProjectRegistry.class));
    
                for (ProjectInternal subproject : projectRegistry.getSubProjects(projectIdentifier.getPath())) {
                    projectModelResolver.resolveProjectModel(subproject.getPath()).find("visualStudio", VisualStudioExtension.class);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/java/jvm-multi-project-with-toolchains/README.adoc

    ====
    include::sample[dir="kotlin",files="buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts[tags=toolchain]"]
    include::sample[dir="groovy",files="buildSrc/src/main/groovy/myproject.java-conventions.gradle[tags=toolchain]"]
    ====
    
    While most modules are fine with the defaults, the `list` subproject overrides the defaults as it has more specific requirements.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. 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)
  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. 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)
  7. .teamcity/src/main/kotlin/projects/CheckProject.kt

            buildType(stagePasses)
            subProject(stageProject)
    
            prevStage = stage
            previousPerformanceTestPasses.addAll(stageProject.performanceTests)
        }
    
        buildType(GitHubMergeQueueCheckPass(model))
    
        buildTypesOrder = buildTypes
        subProjectsOrder = subProjects
    
        cleanupRule(
            historyDays = 14,
            artifactsDays = 7,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 05:52:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    - `include("${subprojectName.raw}")` defines that the build consists of one subproject called `${subprojectName.raw}` that contains the actual code and build logic.
      More subprojects can be added by additional `include(...)` statements.
    
    Our build contains one subproject called `${subprojectName.raw}` that represents the ${language.raw} ${componentType.raw} we are building.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    If your build includes multiple subprojects, create tasks to build those subprojects
    independently. This helps you get the most out of caching, since a change to one
    subproject won't force a rebuild for unrelated subprojects. And this helps reduce
    build times for teams that work on unrelated subprojects: there's no need for
    front-end developers to build the back-end subprojects every time they change the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top