Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for subProject (0.06 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

         * @return requires a project
         */
        boolean projectRequired() default true;
    
        /**
         * if the Mojo uses the Maven project and its subprojects.
         * @return uses the Maven project and its subprojects
         */
        boolean aggregator() default false;
    
        /**
         * does this Mojo need to be online to be executed?
         * @return need to be online
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Aug 29 18:21:40 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. .editorconfig

    spelling_languages = en-US
    
    # Markdown files sometimes need trailing whitespaces.
    [*.md]
    trim_trailing_whitespace = false
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [gradle/verification-metadata.xml]
    indent_size = 3
    
    [subprojects/launcher/src/main/resources/release-features.txt]
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Nov 25 07:01:54 UTC 2025
    - 582 bytes
    - Viewed (0)
  3. build-logic-commons/publishing/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    group = "gradlebuild"
    
    description = "Provides a plugin for publishing some of Gradle's subprojects to Artifactory or the Plugin Portal"
    
    dependencies {
        implementation(projects.basics)
        implementation(projects.moduleIdentity)
    
        implementation("com.gradle.publish:plugin-publish-plugin")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Aug 08 14:54:27 UTC 2024
    - 329 bytes
    - Viewed (0)
  4. .teamcity/src/test/kotlin/BuildTypeTest.kt

            CIBuildModel(
                projectId = "Gradle_Check",
                branch = VersionedSettingsBranch("master"),
                buildScanTags = listOf("Check"),
                subprojects = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json")),
            )
    
        @Test
        fun `CompileAll parameters are correct`() {
            val linuxPaths =
                listOf(
                    "%linux.java8.oracle.64bit%",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

            CIBuildModel(
                projectId = "Gradle_Check",
                branch = VersionedSettingsBranch("master"),
                buildScanTags = listOf("Check"),
                subprojects = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json")),
            )
    
        @Test
        fun `create correct PerformanceTest build type for Linux`() {
            val performanceTest =
                PerformanceTest(
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Sep 18 12:22:32 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  6. build-logic-settings/build.gradle.kts

     * limitations under the License.
     */
    
    description = "Provides settings plugins for configuring global build configuration"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 04:30:54 UTC 2025
    - 785 bytes
    - Viewed (0)
  7. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

            CIBuildModel(
                projectId = "Gradle_Check",
                branch = VersionedSettingsBranch("master"),
                buildScanTags = listOf("Check"),
                subprojects = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json")),
            )
    
        @BeforeEach
        fun setUp() {
            val stepsCapturer = slot<BuildSteps.() -> Unit>()
            every { buildType.steps } returns steps
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Nov 20 07:29:52 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild.generate-subprojects-info.gradle.kts

    Jendrik Johannes <******@****.***> 1607501645 +0100
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 254 bytes
    - Viewed (0)
  9. build-logic-commons/build.gradle.kts

     * limitations under the License.
     */
    
    description = "Provides a set of plugins that are shared between the Gradle and build-logic builds"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 04:30:54 UTC 2025
    - 800 bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins to configure Kotlin DSL and patch the Kotlin compiler for use in Kotlin subprojects"
    
    dependencies {
        implementation("gradlebuild:basics")
    
        implementation(projects.dependencyModules)
        implementation(projects.jvm)
        implementation(projects.kotlinDslSharedRuntime)
    
        implementation(kotlin("gradle-plugin"))
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon May 19 11:33:57 UTC 2025
    - 660 bytes
    - Viewed (0)
Back to top