Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for allprojects (0.3 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

            resolve = new ResolveTestFixture(buildA.buildFile).expectDefaultConfiguration("runtime")
    
            buildB = multiProjectBuild("buildB", ['b1', 'b2']) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java-library'
                        version "2.0"
    
                        repositories {
                            maven { url "${mavenRepo.uri}" }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

        def setup() {
            settingsFile << """
    rootProject.name = 'test'
    """
            buildFile << """
    def usage = Attribute.of('usage', String)
    allprojects {
        dependencies {
            attributesSchema {
               attribute(usage)
            }
        }
        configurations {
            compile {
                attributes.attribute(usage, 'compile')
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

        }
    
        @Test
        @ToBeFixedForIsolatedProjects(because = "allprojects, access to root project")
        void cachesScriptClassForAGivenScript() {
            createDirs("a", "b")
            testFile('settings.gradle') << 'include \'a\', \'b\''
            testFile('external.gradle') << 'ext.appliedScript = this'
            testFile('build.gradle') << '''
    allprojects {
       apply from: "$rootDir/external.gradle"
    }
    subprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildActionCompatibilityMappingCrossVersionSpec.groovy

        def "Applies idea module name compatibility mapping"() {
            given:
            settingsFile << """
                include 'a'
                include 'b'
            """
            buildFile << """
                allprojects {
                    apply plugin: 'java'
                }
                project(':a') {
                    dependencies {
                        ${implementationConfiguration} project(':b')
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/ToolingApiIdeaModelCrossVersionSpec.groovy

        }
    
        def "module java sdk overwrite always null"() {
            given:
            settingsFile << "\ninclude 'root', 'child1', 'child2', 'child3'"
            buildFile << """
                allprojects {
                    apply plugin:'java'
                    apply plugin:'idea'
                    ${javaTargetCompatibility(targetVersion, JavaVersion.VERSION_1_5)}
                }
    
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

            where:
            [api, pathSensitivity] << [Api.values(), [PathSensitivity.RELATIVE, PathSensitivity.ABSOLUTE, PathSensitivity.NAME_ONLY]].combinations()
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, extensive cross-project access")
        def "artifact transforms are sensitive to empty directories by default"() {
            // Immutable artifact transforms are cached to the GradleUserHome,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

        private final MavenSession mavenSession;
        private final MavenRepositorySystem mavenRepositorySystem;
        private final RuntimeInformation runtimeInformation;
        private final Map<String, Project> allProjects = new ConcurrentHashMap<>();
    
        @SuppressWarnings("checkstyle:ParameterNumber")
        public DefaultSession(
                @Nonnull MavenSession session,
                @Nonnull RepositorySystem repositorySystem,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 16 08:45:24 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            delegate.rootProject(action.withCrossProjectModelAccessCheck())
        }
    
        override fun allprojects(action: Action<in Project>) {
            // Use the delegate's implementation of `rootProject` to ensure that the action is only invoked once the rootProject is available
            delegate.rootProject {
                // Instead of the rootProject's `allProjects`, collect the projects while still tracking the current referrer project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcIntegrationTest.groovy

            createDirs("buildSrc/ignored")
            file("buildSrc/settings.gradle") << """
                include 'ignored' // include some content
            """
            file("buildSrc/build.gradle") << """
                allprojects { apply plugin: 'java-library' } // include some content
            """
            file("buildSrc/src/main/java/CustomTask.java") << """
                import ${DefaultTask.name};
                import ${TaskAction.name};
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheCompositeConfigurationIntegrationTest.groovy

            where:
            by << EnabledBy.values()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/4216")
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "build cache service is closed only after all included builds are finished"() {
            executer.beforeExecute { it.withBuildCacheEnabled() }
            def localCache = new TestBuildCache(file("local-cache"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top