Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 478 for subproject1 (0.17 sec)

  1. .teamcity/README.md

      - Suppose the VCS root you just create is `MyNewVcsRoot`. Set "default branch" to `myTestBranch` where your code exists.
    - Click `Create subproject` button at the bottom of the "Subprojects" region of [this page](https://builds.gradle.org/admin/editProject.html?projectId=Gradle&tab=projectGeneralTab)
      - Select `Manually`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    There are now two ways to collect test results across multiple subprojects:
    
    1. From the distribution's project, such as an application or WAR subproject -> link:../samples/sample_jvm_multi_project_with_test_aggregation_distribution.html[distribution sample]
    2. Using a standalone project to specify subprojects -> link:../samples/sample_jvm_multi_project_with_test_aggregation_standalone.html[standalone sample]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    ====
    include::sample[dir="snippets/plugins/multiproject/kotlin", files="settings.gradle.kts[tags=include-subprojects];build.gradle.kts[tags=plugins-on-subprojects];hello-a/build.gradle.kts[];hello-b/build.gradle.kts[];goodbye-c/build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            }
    
            override fun subprojects(action: Action<in Project>) {
                delegate.subprojects(referrer, action)
            }
    
            override fun subprojects(configureClosure: Closure<*>) {
                delegate.subprojects(referrer, ConfigureUtil.configureUsing(configureClosure))
            }
    
            override fun subprojects(referrer: ProjectInternal, configureAction: Action<in Project>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

        }
    
        // TODO: This could be made more generic by passing a list of subproject names
        // that includes 'googleTest'.
        void generateSettings() {
            project.copy {
                from(new File(projectTemplate, "settings.gradle"))
                into(destDir)
                expand([
                    rootProjectName: name,
                    subprojects: subprojectNames
                ])
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

         * If you update the project names then make sure you run gradle eclipse from the root, e.g. for all subprojects.
         * The reason is that there may be subprojects that depend on the subproject with amended eclipse project name.
         * So you want them to be generated as well because the project dependencies in .classpath need to refer to the amended project name.
         * Basically, for non-trivial projects it is recommended to always run gradle eclipse from the root.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoKotlinJvmPluginAggregationTest.groovy

                            testCodeCoverageReport(JacocoCoverageReport) {
                                testType = TestSuiteType.UNIT_TEST
                            }
                        }
                    }
    
                    subprojects {
                        repositories {
                            ${mavenCentralRepository()}
                        }
    
                        plugins.withId('java') {
                            testing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    There are now two ways to collect code coverage results across multiple subprojects:
    
    1. From the distribution's project, such as an application or WAR subproject -> link:../samples/sample_jvm_multi_project_with_code_coverage_distribution.html[distribution sample]
    2. Using a standalone project to specify subprojects -> link:../samples/sample_jvm_multi_project_with_code_coverage_standalone.html[standalone sample]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    <7> The project's <<settings_file_basics.adoc#sec:settings_file_script, settings file>> where the list of subprojects is defined.
    <8> Usually, a project is organized into one or multiple subprojects.
    <9> Each subproject has its own Gradle build script.
    
    [[dir:project_root:cache_cleanup]]
    === Project cache cleanup
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. 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)
Back to top