Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for subProject (0.08 sec)

  1. api/maven-api-core/src/test/java/org/apache/maven/api/services/SourcesTest.java

            Path resolvedPath = Paths.get("/tmp/subproject/pom.xml");
            when(locator.locateExistingPom(any(Path.class))).thenReturn(resolvedPath);
    
            Sources.BuildPathSource source = (Sources.BuildPathSource) Sources.buildSource(basePath);
            ModelSource resolved = source.resolve(locator, "subproject");
    
            assertNotNull(resolved);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                    script {
                        // Because we exclude tests in `distributions-integ-tests` below, `@Flaky` won't work in that subproject.
                        // Here we check the existence of `@Flaky` annotation to make sure nobody use that annotation in `distributions-integ-tests` subproject.
                        name = "MAKE_SURE_NO_@FLAKY_IN_DISTRIBUTIONS_INTEG_TESTS"
                        executionMode = BuildStep.ExecutionMode.ALWAYS
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. build-logic-commons/module-identity/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    description = "Provides a plugin to define the version and name for subproject publications"
    
    group = "gradlebuild"
    
    dependencies {
        api(platform(projects.buildPlatform))
    
        implementation(projects.basics)
    
        implementation("com.google.code.gson:gson")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Sep 17 10:11:26 UTC 2024
    - 292 bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        fun asConfigurationId(
            model: CIBuildModel,
            subProject: String = "",
        ): String {
            val prefix = "${testCoveragePrefix}_"
            val shortenedSubprojectName = shortenSubprojectName(model.projectId, prefix + subProject)
            return model.projectId + "_" + if (subProject.isNotEmpty()) shortenedSubprojectName else "${prefix}0"
        }
    
        private fun shortenSubprojectName(
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 05 13:00:26 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/projects/CheckProject.kt

                subProject(stageProject)
    
                prevStage = stage
                previousPerformanceTestPasses.addAll(stageProject.performanceTests)
                previousCrossVersionTests.addAll(stageProject.crossVersionTests)
            }
    
            buildType(GitHubMergeQueueCheckPass(model))
    
            buildTypesOrder = buildTypes
            subProjectsOrder = subProjects
    
            cleanupRule(
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 3.9K bytes
    - Viewed (1)
  6. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckSubprojectsInfo.kt

        @TaskAction
        fun checkSubprojectsInfo() {
            if (subprojectsJson.asFile.readText() != generateSubprojectsJson()) {
                throw GradleException(
                    "New project(s) added without updating subproject JSON. Please run `:${GenerateSubprojectsInfo.TASK_NAME}` task."
                )
            }
        }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. .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 Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                        FunctionalTestBucket(it).toBuildTypeBucket(model.subprojects)
                    }
    
                // Sometimes people may add new subproject into `subprojects.json`
                // in this case we have no historical test running time, so we simply add these subprojects into first available bucket
                val allSubprojectsInBucketJson = buckets.flatMap { it.subprojects.map { it.name } }.toSet()
    
                val allSubprojectsInModel =
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Sep 24 08:38:33 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  9. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

            val currentCommit = parameters.currentCommit.get()
            outputFile.parentFile.mkdirs()
            outputFile.printWriter(Charsets.UTF_8).use { writer ->
                writer.println("Link;Platform/Subproject;Incubating since")
                data.toSortedMap().forEach { (category, projectsWithProblems) ->
                    projectsWithProblems.forEach { (project, problems) ->
                        problems.forEach {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Jun 02 09:57:54 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    ### Testing changes
    
    After making changes, you can test your code in 2 ways:
    
    #### Run tests
    
    - Run `./gradlew :<subproject>:quickTest` where `<subproject>` is the name of the subproject you've changed. 
    - For example: `./gradlew :launcher:quickTest`.
    
    #### Install Gradle locally
    
    and try out a change in behavior manually. 
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Nov 25 06:57:22 UTC 2025
    - 19K bytes
    - Viewed (0)
Back to top