Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 96 for allprojects (0.31 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/PlayApp.groovy

            def gradleBuild = sourceFile("", buildFileName)
            def gradleBuildWithRepositories = gradleBuild.content.replace("PLUGIN_VERSION", AbstractSmokeTest.TestedVersions.playframework).concat """
                allprojects {
                    ${Repositories.PLAY_REPOSITORIES}
                }
            """
            return new SourceFile(gradleBuild.path, "build.gradle", gradleBuildWithRepositories)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/CustomToolingModelCrossVersionSpec.groovy

            file('build.gradle') << """
    import org.gradle.tooling.provider.model.ToolingModelBuilderRegistry
    import org.gradle.tooling.provider.model.ToolingModelBuilder
    import javax.inject.Inject
    
    allprojects {
        apply plugin: CustomPlugin
    }
    
    class CustomModel implements Serializable {
        List<CustomThing> things = new ArrayList()
    
        CustomModel(int heapSizeMb) {
            for(int i = 0; i < heapSizeMb; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTransformNodeIdBuildOperationIntegrationTest.groovy

            createDirs("producer", "consumer")
            settingsFile << """
                include 'producer', 'consumer'
            """
    
            setupBuildWithColorAttributes()
            buildFile << """
                allprojects {
                    dependencies {
                        registerTransform(MakeColor) {
                            from.attribute(color, 'blue')
                            to.attribute(color, 'red')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/TestDisplayNameJUnit4CrossVersionSpec.groovy

     */
    class TestDisplayNameJUnit4CrossVersionSpec extends TestLauncherSpec {
        @Override
        void addDefaultTests() {
        }
    
        @Override
        String simpleJavaProject() {
            """
            allprojects{
                apply plugin: 'java'
                ${mavenCentralRepository()}
                dependencies {
                    testImplementation("junit:junit:4.13.2")
                }
            }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

            given:
            createDirs("sub")
            settingsFile << """
                rootProject.name = 'root'
                include 'sub'
            """
            buildFile << """
                allprojects {
                    task ok { doLast { println('ok!') } }
                }
            """
    
            when:
            switch (enablement) {
                case CCDebugEnablement.DEBUG_LOG_LEVEL:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

                    }
                """
            }
    
            buildB = multiProjectBuildInSubFolder("buildB", ['b1', 'b2']) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java'
                    }
                """
            }
        }
    
        def "EclipseProject model has dependencies substituted in composite"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainsParallelActionExecutionCrossVersionSpec.groovy

            settingsFile << """
                ${applyToolchainResolverPlugin()}
    
                rootProject.name = 'root'
                include 'a', 'b'
            """
            buildFile << """
                allprojects {
                    apply plugin: ToolchainPlugin
                    apply plugin: 'java'
    
                    java {
                        toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 05:31:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

                    includeBuild 'buildC'
                """
            }
    
            buildB = multiProjectBuildInSubFolder("buildB", ['b1', 'b2']) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java-library'
                    }
                    project(':b1') {
                        dependencies {
                            testImplementation "org.test:buildC:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/crossVersionTest/groovy/org/gradle/api/internal/tasks/compile/tooling/JavaCompileTaskOperationResultCrossVersionTest.groovy

    class JavaCompileTaskOperationResultCrossVersionTest extends ToolingApiSpecification {
    
        def setup() {
            settingsFile << """
                include 'processor'
            """
            buildFile << """
                allprojects {
                    apply plugin: 'java'
                }
                dependencies {
                    compileOnly project(':processor')
                    annotationProcessor project(':processor')
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/BuildTestFixture.groovy

            def rootMulti = populate(projectName) {
                subprojects.each {
                    settingsFile << "include '$it'\n"
                }
    
                buildFile << """
                        allprojects {
                            group = 'org.test'
                            version = '1.0'
                        }
                    """
            }
            rootMulti.with(cl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top