Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 145 for allprojects (0.72 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedMissingModulesIntegrationTest.groovy

            def repo2Module = repo2.module("group", "projectA", "1.0")
    
            createDirs("subproject")
            settingsFile << "include 'subproject'"
            buildFile << """
                allprojects{
                    repositories {
                        maven {
                            name 'repo1'
                            url '${repo1.uri}'
                        }
                        maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         * already available. It is also executed as subsequent projects are added to this build.
         *
         * @param action The action to execute.
         */
        void allprojects(Action<? super Project> action);
    
        /**
         * Returns the {@link TaskExecutionGraph} for this build.
         *
         * @return The task graph. Never returns null.
         */
        TaskExecutionGraph getTaskGraph();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaProjectOutgoingVariantsIntegrationTest.groovy

            createDirs("other-java", "java", "consumer")
            settingsFile << "include 'other-java', 'java', 'consumer'"
            buildFile << """
    def artifactType = Attribute.of('artifactType', String)
    
    allprojects {
        repositories { maven { url '${mavenRepo.uri}' } }
    }
    
    project(':other-java') {
        apply plugin: 'java'
        java {
            withJavadocJar()
            withSourcesJar()
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

        }
    
        def "applicationId for cross script buildscript configuration is emitted correctly"() {
            given:
            settingsFile << """
            gradle.allprojects {
                buildscript {
                    repositories.all {
                        println "script repo callback"
                    }
                }
                repositories.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

    class TestReportAggregationPluginIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            multiProjectBuild("root", ["application", "direct", "transitive"]) {
                buildFile << """
                    allprojects {
                        repositories {
                            ${mavenCentralRepository()}
                        }
                    }
                    subprojects {
                        plugins.withId('java') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

            String header = "$group tasks"
            """$header
    ${'-' * header.length()}"""
        }
    
        static String multiProjectBuild() {
            """
                allprojects {
                    task a {
                        group = '$GROUP'
                    }
                }
    
                subprojects {
                    task b
                }
    
                task c
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationRepositoriesBuildOperationIntegrationTest.groovy

        def "repositories shared across projects are stable"() {
            setup:
            createDirs("child")
            settingsFile << """
                include 'child'
            """
            buildFile << """
                allprojects {
                    apply plugin: 'java'
                    ${mavenCentralRepoBlock()}
                    task resolve {
                        def files = configurations.compileClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

        }
    
        def "assemble on specific project of multi-project Java build"() {
            given:
            settingsFile << """
                include("a", "b")
            """
            buildFile << """
                allprojects { apply plugin: 'java' }
                project(":b") {
                    dependencies {
                        implementation(project(":a"))
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                         org.junit.Assert.assertEquals(1, 2);
                    }
                }"""
    
        }
    
        String simpleJavaProject() {
            """
            allprojects{
                apply plugin: 'java'
                ${mavenCentralRepository()}
                dependencies { ${testImplementationConfiguration} 'junit:junit:4.13' }
            }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryOutgoingVariantsIntegrationTest.groovy

            createDirs("other-java", "java", "consumer")
            settingsFile << "include 'other-java', 'java', 'consumer'"
            buildFile << """
    def artifactType = Attribute.of('artifactType', String)
    
    allprojects {
        repositories { maven { url '${mavenRepo.uri}' } }
    }
    
    project(':other-java') {
        apply plugin: 'java-library'
    }
    
    project(':java') {
        apply plugin: 'java-library'
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top