Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for buildDependents (0.25 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjectsTest.groovy

        def "provides all tasks from dependent projects"() {
            def dep = new TasksFromDependentProjects("buildDependents", "testRuntime", checker, TestFiles.taskDependencyFactory())
    
            [child1, child2, child3].each {
                it.configurations.create "testRuntime"
                it.configurations.create "conf"
                it.tasks.create "buildDependents"
                it.tasks.create "someTask"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/plugins/NativeBinariesTestPlugin.java

                    };
                    buildDependents.dependsOn(deferredDependencies);
                }
                for (NativeTestSuiteBinarySpecInternal testSuiteBinary : nativeBinaries.withType(NativeTestSuiteBinarySpecInternal.class)) {
                    Task buildDependents = tasks.get(testSuiteBinary.getNamingScheme().getTaskName("buildDependents"));
                    buildDependents.dependsOn(testSuiteBinary.getCheckTask());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

                    @Override
                    public void execute(DefaultTask buildDependents) {
                        buildDependents.setGroup("Build Dependents");
                        buildDependents.setDescription("Build dependents of " + component.getDisplayName() + ".");
                    }
                });
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            executed ':b:buildNeeded', ':a:buildNeeded'
            fixture.assertProjectsConfigured(":", ":b", ":a")
        }
    
        @ToBeFixedForIsolatedProjects(because = "buildDependents is not IP compatible, configure projects from root,")
        def "handles buildDependents"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            file("a/build.gradle") << """ apply plugin: 'java' """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    The `build` task is typically used to compile, test, and check a single project.
    
    In multi-project builds, you may often want to do all of these tasks across various projects.
    The `buildNeeded` and `buildDependents` tasks can help with this.
    
    In <<declaring_dependencies_between_subprojects#javadependencies_2,this example>>, the `:services:person-service` project depends on both the `:api` and `:shared` projects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            then:
            task.taskDependencies.getDependencies(task)*.path as Set == [':middle:build', ':common:buildNeeded'] as Set
    
            when:
            task = middleProject.tasks['buildDependents']
    
            then:
            task.taskDependencies.getDependencies(task)*.path as Set == [':middle:build', ':app:buildDependents'] as Set
        }
    
        def "build other projects with cyclic dependencies"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Application tasks
    -----------------
    run - Runs this project as a JVM application
    
    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    build - Assembles and tests this project.
    buildDependents - Assembles and tests this project and all projects that depend on it.
    buildNeeded - Assembles and tests this project and all projects it depends on.
    classes - Assembles main classes.
    clean - Deletes the build directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    _Depends on_: `build`, and `buildNeeded` tasks in all projects that are dependencies in the `testRuntimeClasspath` configuration.
    +
    Performs a full build of the project and all projects it depends on.
    
    `buildDependents`::
    _Depends on_: `build`, and `buildDependents` tasks in all projects that have this project as a dependency in their `testRuntimeClasspath` configurations
    +
    Performs a full build of the project and all projects which depend upon it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

        public static final String BUILD_TASK_NAME = LifecycleBasePlugin.BUILD_TASK_NAME;
        public static final String BUILD_DEPENDENTS_TASK_NAME = "buildDependents";
        public static final String BUILD_NEEDED_TASK_NAME = "buildNeeded";
    
        /**
         * Task group name for documentation-related tasks.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    In the following sections, we will demonstrate the usage of the `assembleDependents\*`, `buildDependents*` and `dependentComponents` tasks with a sample build that contains a CUnit test suite. The build script for the sample is the following:
    
    === Example: Sample build
    
    [source.multi-language-sample,groovy]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top