Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 373 for allprojects (0.36 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            given:
            createDirs("project1", "project2")
            settingsFile << """
    include "project1", "project2"
    """
    
            buildFile << """
    allprojects {
        apply plugin: 'java-library'
        apply plugin: 'maven-publish'
    
        group = "org.gradle.test"
    
        ${mavenCentralRepository()}
    }
    
    project(":project1") {
        version = "1.0"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                include 'util'
                include 'app'
            """
            buildFile << resolveTask << """
                import org.gradle.api.artifacts.transform.TransformParameters
    
                allprojects {
                    repositories {
                        maven { url '${mavenHttpRepo.uri}' }
                    }
                }
            """
        }
    
        def "transform is applied to each file once per build"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.invocation.Gradle.xml

                </tr>
                <tr>
                    <td>useLogger</td>
                </tr>
                <tr>
                    <td>rootProject</td>
                </tr>
                <tr>
                    <td>allprojects</td>
                </tr>
                <tr>
                    <td>includedBuild</td>
                </tr>
                <tr>
                    <td>beforeSettings</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

        void handlesPlusMinusConfigurationsForProjectDeps() {
            //when
            createDirs("foo", "bar", "unwanted")
            runEclipseTask "include 'foo', 'bar', 'unwanted'",
                """
    allprojects {
      apply plugin: 'java'
      apply plugin: 'eclipse'
    }
    
    configurations {
      someConfig
      someOtherConfig
    }
    
    dependencies {
      someConfig project(':foo')
      someConfig project(':bar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginAccessorsIntegrationTest.kt

                include("consumer", "producer")
                """
            )
    
            withBuildScript(
                """
                plugins {
                    `java-library`
                }
    
                allprojects {
                    $repositoriesBlock
                }
    
                dependencies {
                    api(project(":consumer"))
                }
                """
            )
    
            withFolders {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ZincScalaCompileFixture.groovy

        ZincScalaCompileFixture(GradleExecuter executer, TestDirectoryProvider testDir) {
            super(executer, testDir)
        }
    
        @Override
        String initScriptContent() {
            return """
                allprojects {
                    $disableScalaDocIfInDaemonMode
                }
            """
        }
    
        static String getDisableScalaDocIfInDaemonMode() {
            return !GradleContextualExecuter.isDaemon() ? "" : """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModelBuilder.java

        }
    
        private void applyIdeaPluginToBuildTree(ProjectInternal root, List<GradleInternal> alreadyProcessed) {
            Set<Project> allProjects = root.getAllprojects();
            for (Project p : allProjects) {
                p.getPluginManager().apply(IdeaPlugin.class);
            }
            for (IncludedBuildInternal reference : root.getGradle().includedBuilds()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApiEclipseModelCrossVersionSpec.groovy

            mavenRepo.module("org.example", "example-lib", "1.0").publish()
    
            settingsFile << "rootProject.name = 'root'; include 'sub'"
            buildFile << """allprojects { apply plugin: 'java' }
    repositories { maven { url '${mavenRepo.uri}' } }
    dependencies {
        ${implementationConfiguration} project(':sub')
        ${implementationConfiguration} 'org.example:example-lib:1.0'
    }"""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StringConfigurationAttributesResolveIntegrationTest.groovy

            '''
                def flavor = Attribute.of('flavor', String)
                def buildType = Attribute.of('buildType', String)
                def extra = Attribute.of('extra', String)
    
                allprojects {
                   dependencies {
                       attributesSchema {
                          attribute(flavor)
                          attribute(buildType)
                          attribute(extra)
                       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

            buildFile << """
    import ${javax.inject.Inject.name}
    // TODO: Default imports should work for of inner classes
    import ${org.gradle.api.artifacts.transform.TransformParameters.name}
    
    allprojects {
        task producer(type: ${builder.producerTaskClassName}) {
            ${builder.producerConfig}
        }
        afterEvaluate {
            ${builder.producerConfigOverrides}
        }
        artifacts {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
Back to top