Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 385 for allprojects (1.76 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            }
    
            override fun allprojects(action: Action<in Project>) {
                delegate.allprojects(referrer, action)
            }
    
            override fun allprojects(configureClosure: Closure<*>) {
                delegate.allprojects(referrer, ConfigureUtil.configureUsing(configureClosure))
            }
    
            override fun allprojects(referrer: ProjectInternal, configureAction: Action<in Project>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

        }
    
        void setupBuildWithNoSteps(@DelegatesTo(Builder) Closure cl = {}) {
            setupBuildWithColorAttributes(buildFile, cl)
            setupTransformerTypes()
            buildFile << """
    
    allprojects {
        repositories {
            maven {
                url = '${mavenHttpRepo.uri}'
                metadataSources { gradleMetadata() }
            }
        }
    
        dependencies {
            artifactTypes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

            mavenRepo.module("org.other", "externalB", "2.1").publish()
    
            and:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
    
            and:
            buildFile << """
    allprojects {
        repositories { maven { url '$mavenRepo.uri' } }
    }
    project(":a") {
        configurations {
            api
            'default' { extendsFrom api }
        }
        dependencies {
            api "org.other:externalA:1.2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K 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. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                includeBuild 'includedBuild'
            """
            buildFile << '''
                def buildType = Attribute.of('buildType', String)
                def flavor = Attribute.of('flavor', String)
                allprojects {
                    dependencies {
                        attributesSchema {
                            attribute(buildType)
                            attribute(flavor)
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top