Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 215 for allprojects (0.31 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/settings.gradle.kts

                }
            }
        }
    }
    // tag::android[]
    include("lib", "app")
    // end::android[]
    
    rootProject.name = "android-build"
    
    gradle.allprojects {
        repositories {
            google()
            mavenCentral()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 491 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/projectReports/tests/propertyListReport.out

    ------------------------------------------------------------
    Project ':api' - The shared API for the application
    ------------------------------------------------------------
    
    allprojects: [project ':api']
    ant: org.gradle.api.internal.project.DefaultAntBuilder@12345
    antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@12345
    artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@12345
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 578 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectVariantResolutionIntegrationTest.groovy

            createDirs("a", "b")
            settingsFile << """
                include 'a', 'b'
            """
            setupBuildWithColorVariants()
            taskTypeWithOutputFileProperty()
            buildFile << """
                allprojects {
                    def p = tasks.register("producer", FileProducer) {
                        output = file(project.name + ".txt")
                    }
                    def b = tasks.register("broken", FileProducer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyIntegrationTest.groovy

                    Dep dep = null;
                }
            """
            buildTestFixture.withBuildInSubDir()
            depProject = singleProjectBuild("dep") {
                buildFile << """
                    allprojects {
                        apply plugin: 'java'
                        group = 'org.test'
                    }
                """
                file("src/main/java/Dep.java") << "public class Dep {}"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/build.gradle

    defaultTasks 'idea', 'cleanIdea'
    
    allprojects {
        apply plugin: 'idea'
    }
    
    idea.project.jdkName = '1.6'
    idea.project.languageLevel = '1.6'
    
    subprojects {
        apply plugin: 'java-library'
    
        idea {
            module {
                downloadJavadoc = true
            }
        }
    
        repositories {
            mavenCentral()
        }
    
        dependencies {
            testImplementation 'junit:junit:4.7'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 669 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachingDependencyMetadataInMemoryIntegrationTest.groovy

            given:
            def lib = ivyHttpRepo.module("org", "lib").publish()
    
            createDirs("impl")
            file("settings.gradle") << "include 'impl'"
    
            file("build.gradle") << """
                allprojects {
                    configurations { conf }
                    repositories { ivy { url "${ivyHttpRepo.uri}" } }
                    dependencies { conf 'org:lib:1.0' }
                    task resolveConf {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/initScripts/plugins/kotlin/init.gradle.kts

        companion object {
            const val ENTERPRISE_REPOSITORY_URL = "https://repo.gradle.org/gradle/repo"
        }
    
        override fun apply(gradle: Gradle) {
            // ONLY USE ENTERPRISE REPO FOR DEPENDENCIES
            gradle.allprojects {
                repositories {
    
                    // Remove all repositories not pointing to the enterprise repository url
                    all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.api.Project.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>allprojects</td>
                </tr>
                <tr>
                    <td>artifacts</td>
                </tr>
                <tr>
                    <td>ant</td>
                </tr>
                <tr>
                    <td>buildDir</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiHonorsProjectCustomizationsCrossVersionSpec.groovy

        def "should honour reconfigured project names"() {
    
            file('build.gradle').text = '''
    allprojects {
        apply plugin: 'java'
        apply plugin: 'eclipse'
    }
    
    project(':api') {
        eclipse.project.name = 'gradle-api'
    }
    
    project(':impl') {
        eclipse.project.name = 'gradle-impl'
    }
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

            given:
            createDirs("project1", "project2")
            settingsFile << """
    include "project1", "project2"
            """
    
            buildFile << """
    allprojects {
        group = "org.gradle.test"
        version = "1.0"
    }
    
    project(":project1") {
        apply plugin: "java-library"
        apply plugin: "ivy-publish"
    
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top