Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for otherBuild (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyCompileScriptBuildOperationIntegrationTest.groovy

            file('otherBuild/settings.gradle').touch()
            file('otherBuild/buildSrc/build.gradle') << """
            tasks.withType(AbstractCompile){
                options.compilerArgs = ['-proc:none']
            }
            """
    
            file('otherBuild/buildSrc/src/main/groovy/Thing.groovy') << """
            class Thing{}"""
    
            file('otherBuild/build.gradle') << "apply from: '../shared.gradle'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleGradleBuildGroupedTaskFunctionalTest.groovy

                    }
                }
    
                task otherBuild(type: GradleBuild) {
                    mustRunAfter helloWorld
                    $externalBuildConfig
                    tasks = ['important']
                }
    
                task byeWorld {
                    mustRunAfter otherBuild
    
                    doLast {
                        logger.quiet '$BYE_WORLD_MESSAGE'
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCustomComponentIntegTest.groovy

            when:
            mavenRepo.module('group', 'module', '1.0').publish()
    
            def otherSettings = file('consumer/settings.gradle')
            def otherBuild = file('consumer/build.gradle')
    
            otherSettings << "rootProject.name = 'consumer'"
            otherBuild << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
    
                configurations {
                    conf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ClasspathDependenciesAttributesIntegrationTest.groovy

        }
    
        def 'buildscript classpath resolves java-runtime variant'() {
            def otherSettings = file('other/settings.gradle')
            def otherBuild = file('other/build.gradle')
    
            otherSettings << """
    rootProject.name = 'other'
    """
            otherBuild << """
    group = 'org.other'
    version = '1.0'
    configurations {
        conf {
            assert canBeConsumed
            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/PropertiesLoaderIntegrationTest.groovy

            then:
            outputContains('mySystemProp=commandline')
        }
    
        def "can always change buildDir in properties file"() {
            when:
            file('gradle.properties') << """
                buildDir=otherBuild
            """
            then:
            succeeds ':help'
        }
    
        def "Gradle properties can be derived from environment variables"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top