Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for subProjects (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    When Gradle builds the output of `buildSrc` it runs only the tasks that produce that output, which is typically the `jar` task.
    In previous releases Gradle would run the `build` task.
    
    This means that the tests of `buildSrc` and its subprojects are not built and executed automatically and must now be explicitly requested.
    
    This behavior is now consistent for `buildSrc` and included builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            settingsFile << """
                include "testlib", "common"
            """
    
            buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                    configurations.all {
                       resolutionStrategy.failOnVersionConflict()
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    * resolve all <<declaring_dependencies.adoc#sec:resolvable-consumable-configs,resolvable configurations>>, which includes:
    ** configurations from the root project
    ** configurations from all subprojects
    ** configurations from `buildSrc`
    ** included builds configurations
    ** configurations used by plugins
    * download all artifacts discovered during resolution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    you should consider configuring such normalization in a <<sharing_build_logic_between_subprojects#sec:convention_plugins,convention plugin>> to share it between subprojects.
    
    The effect of this configuration would be that changes to `build-info.properties` would be ignored for up-to-date checks and <<build_cache.adoc#build_cache,build cache>> key calculations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.Project.subprojects(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            // This test exists because a NullPointerException was thrown by getTaskDependencyFromProjectDependency()
            // if the rootProject defined a task as the same name as a subproject task, but did not define the same configuration.
    
            def configuration = conf()
    
            def mainTask = Mock(Task)
            def rootProject = Mock(Project)
            def taskProject = Mock(Project)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org.gradle.test:lib:1.0')
                }
            }
        }
    
        def "extension can be used in any subproject"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
                            library("lib", "org.gradle.test:lib:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        private void testAppendOfInheritedPluginConfiguration(String test) throws Exception {
            PomTestWrapper pom = buildPom("plugin-config-append/" + test + "/subproject");
            String prefix = "build/plugins[1]/configuration/";
            assertEquals("PARENT-1", pom.getValue(prefix + "stringParams/stringParam[1]"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Please use standard locations for settings and build files:
    
    * settings file in the root of the build
    * build file in the root of each subproject
    
    [[disabling_user_home_cache_cleanup]]
    ==== Deprecated org.gradle.cache.cleanup property
    
    The `org.gradle.cache.cleanup` property in `gradle.properties` under Gradle User Home has been deprecated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top