Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 365 for allprojects (0.15 sec)

  1. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/BaseTestKitEndUserIntegrationTest.groovy

        def setup() {
            requireIsolatedTestKitDir = true
            executer.beforeExecute {
                usingInitScript(file("tempDirInit.gradle") << """
                    allprojects {
                        tasks.withType(Test) {
                            systemProperty "$DefaultGradleRunner.TEST_KIT_DIR_SYS_PROP", "${TextUtil.normaliseFileSeparators(testKitDir.absolutePath)}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseJavaProjectModulesIntegrationTest.groovy

                }
            """
    
            settingsFile << """
                rootProject.name = 'root'
                include 'api'
                include 'util'
    
            """
    
            buildFile << """
                allprojects {
                    apply plugin: 'java'
                    apply plugin: 'eclipse'
                }
    
                project(':util') {
                    dependencies {
                        implementation project(':api')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/AbstractAntlrIntegrationTest.groovy

        def setup() {
            // So we can assert on which version of ANTLR is used at runtime
            executer.withArgument("-i")
            buildFile << """
                allprojects {
                    apply plugin: 'java'
                    ${mavenCentralRepository()}
                    tasks.withType(JavaCompile) {
                        options.compilerArgs << "-proc:none"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

            buildB.file("bar/.gitkeepdir").touch()
            buildB.settingsFile << """
                rootProject.name = 'B'
                include 'foo', 'bar'
            """
            buildB.buildFile << """
                allprojects {
                    apply plugin: 'java'
                    group = 'org.test'
                    version = '1.0'
                }
            """
            repo.commit('initial')
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/GradleBuildModelCrossVersionSpec.groovy

        def setup() {
            file('settings.gradle') << '''
    include 'a'
    include 'b'
    include 'b:c'
    rootProject.name = 'test'
    '''
            buildFile << """
    allprojects {
        description = "project \$name"
        task buildStuff
    }
    """
        }
    
        def "can request GradleBuild model including projectDirectory"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCompileAvoidanceWithIncrementalCompilationIntegrationTest.groovy

    abstract class AbstractCompileAvoidanceWithIncrementalCompilationIntegrationTest extends AbstractJavaGroovyIncrementalCompilationSupport {
        def setup() {
            buildFile << """
                allprojects {
                    ${mavenCentralRepository()}
                }
           """
        }
    
        def "doesn't recompile if implementation dependency changed in ABI compatible way"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MultiprojectIntegrationTest.groovy

        @Test
        public void canInjectConfigurationFromParentProject() {
            createDirs("a", "b")
            testFile('settings.gradle') << 'include "a", "b"'
            testFile('build.gradle') << '''
                allprojects {
                    def destDir = buildDir
                    task test {
                        doLast {
                            destDir.mkdirs()
                            new File(destDir, 'test.txt') << 'content'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

                    release
                }
    
                def flavor = Attribute.of(Flavor)
                def buildType = Attribute.of(BuildType)
                def extra = Attribute.of('extra', String)
    
                allprojects {
                   dependencies {
                       attributesSchema {
                          attribute(flavor)
                          attribute(buildType)
                          attribute(extra)
                       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
Back to top