Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for subProject (0.05 sec)

  1. .github/workflows/CheckBadMerge.groovy

        private static final List<String> MONITORED_PATHS = [
            "subprojects/docs/src/docs/release/notes.md",
            "platforms/documentation/docs/src/docs/release/notes.md",
            "platforms/documentation/docs/src/docs/release/release-notes-assets/",
            "subprojects/launcher/src/main/resources/release-features.txt",
            "platforms/core-runtime/launcher/src/main/resources/release-features.txt"
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Jan 24 10:03:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. .gitignore

    /*/*/*/*.iml
    /*/*/*/*/*.iml
    /out
    /*/out
    /*/*/out
    /*/*/*/out
    /*/*/*/*/out
    /.teamcity/target
    /gradle.ipr
    /gradle.iws
    
    # Eclipse
    # -------
    *.classpath
    *.project
    *.settings
    /bin
    /subprojects/*/bin
    atlassian-ide-plugin.xml
    .metadata/
    
    # NetBeans
    # --------
    .nb-gradle
    .nb-gradle-properties
    
    # Vim
    # ---
    *.sw[nop]
    
    # Emacs
    # -----
    *~
    \#*\#
    .\#*
    
    # Textmate
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Nov 11 20:35:18 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. .idea/gradle.xml

                <option value="$PROJECT_DIR$/platforms/software/version-control" />
                <option value="$PROJECT_DIR$/subprojects/build-events" />
                <option value="$PROJECT_DIR$/subprojects/composite-builds" />
                <option value="$PROJECT_DIR$/subprojects/core" />
                <option value="$PROJECT_DIR$/subprojects/core-api" />
                <option value="$PROJECT_DIR$/testing/architecture-test" />
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 11 18:02:10 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  4. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                .withBinding("packageNameChoice", packageNameChoice)
                .withBinding("applicationStructureChoice", applicationStructureChoice)
                .withBinding("subprojectName", settings.subprojects.first())
                .withBinding("toolChain", toolChain)
                .withBinding("exampleClass", exampleClass)
                .withBinding("sourceFile", sourceFile)
                .withBinding("testSourceFile", testSourceFile)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Sun Dec 15 07:49:41 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. impl/maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

            assertEquals(1, results.size());
            MavenProject parent = results.get(0).getProject();
            assertEquals("parent", parent.getArtifactId());
            // The subprojects list should be empty since we explicitly defined an empty <subprojects /> element
            assertTrue(parent.getModel().getDelegate().getSubprojects().isEmpty());
        }
    
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  6. .github/workflows/contributor-pr.yml

        runs-on: ubuntu-latest
        steps:
          - name: git clone
            uses: actions/checkout@v6
          - id: setup-matrix
            run: echo "matrix=$(jq -c -f .github/workflows/extract-unit-test-split.jq .teamcity/subprojects.json)" >> $GITHUB_OUTPUT
          - name: setup java
            uses: actions/setup-java@v5
            with:
              distribution: temurin
              java-version: 17
          - id: determine-sys-prop-args
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Sun Dec 14 14:03:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java

            Path locateExistingPom(@Nonnull Path project);
        }
    
        /**
         * Resolves a relative path to another POM file using the provided model locator.
         * This method is specifically used to locate POM files for subprojects or related
         * projects referenced from the current POM.
         *
         * <p>The resolution process typically involves:</p>
         * <ul>
         *   <li>Normalizing the relative path for the current platform</li>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

                import org.gradle.api.internal.tasks.testing.TestResultProcessor
    
                plugins {
                    id("gradlebuild.ci-reporting")
                }
    
                subprojects {
                    apply(plugin = "gradlebuild.ci-reporting")
                }
    
                project(":failed-test-with-leftover").configureTestWithLeftover(false, true)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Jun 18 10:36:40 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  9. impl/maven-core/src/site/apt/configuration-management.apt

     their source trees set up in the same way as their colleagues.
    
     here's what I do currently in the netbeans part of the mavenide project to
     find the relevant subprojects/sibling projects. I check if the user has
     defined the maven.multiproject.includes property in any of his properties
     files for the current project. if yes. then I'm able to find projects that
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                        plugins {
                            base
                            kotlin("jvm") version "$embeddedKotlinVersion" apply false
                        }
                        subprojects {
                            apply(plugin = "gradlebuild.module-identity")
                            apply(plugin = "kotlin")
                            the<GradleModuleExtension>().identity.baseName.set("api-module")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:14:25 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top