Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 106 of 106 for subproject1 (0.24 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            javaClassFile("Foo.class").exists()
        }
    
        def "don't implicitly compile source files from classpath"() {
            settingsFile << "include 'a', 'b'"
            buildFile << """
                subprojects {
                    apply plugin: 'java'
                    tasks.withType(JavaCompile) {
                        options.compilerArgs << '-Xlint:all' << '-Werror'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    [[sec:rules_in_settings]]
    === Declaring rules in a central place
    
    NOTE: Declaring component metadata rules in settings is an incubating feature
    
    Instead of declaring rules for each subproject individually, it is possible to declare rules in the `settings.gradle(.kts)` file for the whole build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        }
    
        def "task cannot write into transform directory"() {
            enableProblemsApiCheck()
            def forbiddenPath = ".transforms/not-allowed.txt"
    
            buildFile << """
                subprojects {
                    task badTask {
                        def projectLayout = project.layout
                        outputs.file { projectLayout.buildDirectory.file("${forbiddenPath}") } withPropertyName "output"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
Back to top