Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 478 for subProjects (0.2 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r27/ToolingApiEclipseLinkedResourcesCrossVersionSpec.groovy

            EclipseProject subprojectA = rootProject.children.find {EclipseProject project -> project.name == "subprojectA"}
            then:
            subprojectA.linkedResources.size() == 4
            subprojectA.sourceDirectories.size() == 5
    
            subprojectA.linkedResources[0].name == 'src-sibling'
            subprojectA.linkedResources[0].type == '2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.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.
    
    Consult the <<directory_layout.adoc#dir:project_root,Gradle Directories reference>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/groovy/producer/build.gradle

        def sharedFile = layout.buildDirectory.file("some-subdir/shared-file.txt")
        outputs.file(sharedFile)
        doFirst {
            sharedFile.get().asFile << "This file is shared across Gradle subprojects."
        }
    }
    
    configurations {
        sharedConfiguration {
            canBeResolved = false
        }
    }
    
    artifacts {
        sharedConfiguration(makeFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 389 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.copy(action)
    
        override fun getDescription(): String? =
            delegate.description
    
        override fun subprojects(action: Action<in Project>) =
            delegate.subprojects(action)
    
        override fun subprojects(configureClosure: Closure<*>) =
            delegate.subprojects(configureClosure)
    
        override fun getBuildscript(): ScriptHandler =
            delegate.buildscript
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. 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)
  6. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/build.gradle

    subprojects {
        apply plugin: "groovy"
    
        dependencies {
            implementation localGroovy()
        }
    
        compileJava.options.fork = true
    
        // force creation of multiple daemons for Java compilation by alternating between two distinct sets of JVM args
        def count = (project.name - "project") as int
        compileJava.options.forkOptions.jvmArgs = count % 2 ? ["-dsa"] : ["-esa"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 388 bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildRootProjectIntegrationTest.groovy

    import org.gradle.integtests.fixtures.build.BuildTestFile
    
    class CompositeBuildRootProjectIntegrationTest extends AbstractCompositeBuildIntegrationTest {
    
        def "root of a composite build cannot refer to own subprojects by GA coordinates by default"() {
            given:
            def buildB = multiProjectBuild("buildB", ['c1', 'c2', 'c3']) {
                buildFile << """
                allprojects {
                    apply plugin: 'java-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 11:50:58 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  8. 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(project(":dependency-modules"))
        implementation(project(":jvm"))
        implementation(project(":kotlin-dsl-shared-runtime"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 737 bytes
    - Viewed (0)
  9. platforms/software/test-suites-base/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """Base for test suites.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build.
    
    This project is separate from testing-base to avoid needing to be Java 6 compatible.
    """
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":base-services"))
        api(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 950 bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/listsCommonDynamicAvailableValues/build.gradle

    import org.gradle.api.tasks.options.Option
    import org.gradle.api.tasks.options.OptionValues
    
    subprojects{
        task hello(type: CustomTask)
    }
    
    class CustomTask extends DefaultTask {
        @TaskAction
        void doSomething() {
        }
    
        @Option(option = "stringValue", description = "Configures a string value in CustomTask.")
        public void setStringValue(String value) {
        }
    
        @OptionValues("stringValue")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 16:41:46 UTC 2018
    - 531 bytes
    - Viewed (0)
Back to top