Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 106 for subproject1 (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, subprojects")
        def "registration and realization ops have correct paths"() {
            given:
            def createTasks = {
                buildFile << """
                    apply plugin: 'base'
                    subprojects {
                        apply plugin: 'base'
                        rootProject.tasks.named('build').configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

        }
    
        BuildTestFile multiProjectBuildInSubDir(String projectName, List<String> subprojects, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            new BuildTestFixture(projectDir).withBuildInSubDir().multiProjectBuildWithIsolatedProjects(projectName, subprojects, cl)
        }
    
        void withSomeToolingModelBuilderPluginInBuildSrc(String builderContent = "") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            "nope"   | _
            "y"      | _
            "n"      | _
        }
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "can ask yes/no question when build is executed in parallel"() {
            given:
            withParallel()
    
            buildFile << """
                subprojects {
                    task "askYesNo"
                }
            """
            createDirs("a", "b", "c")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public void subprojects(Closure configureClosure) {
            subprojects(this, ConfigureUtil.configureUsing(configureClosure));
        }
    
        @Override
        public void subprojects(Action<? super Project> action) {
            subprojects(this, action);
        }
    
        @Override
        public void subprojects(ProjectInternal referrer, Action<? super Project> configureAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        }
    
        def multiProjectBuild(String projectName, List<String> subprojects, @DelegatesTo(value = BuildTestFile, strategy = Closure.DELEGATE_FIRST) Closure cl = {}) {
            multiProjectBuild(projectName, subprojects, CompiledLanguage.JAVA, cl)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/build.gradle.kts

            proguardFile("src/main/proguard/wrapper.pro")
            // Exclude META-INF resources from Guava etc. added via transitive dependencies
            exclude("META-INF/.*")
            // Exclude properties files from dependency subprojects
            exclude("gradle-.*-classpath.properties")
            exclude("gradle-.*-parameter-names.properties")
        }
    }
    
    // TODO This dependency should be configured by the Gr8 plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. subprojects/distributions-dependencies/build.gradle.kts

     * This project provides the "platform" for the Gradle distribution.
     * We want the versions that are packaged in the distribution to be used everywhere (e.g. in all test scenarios)
     * Hence, we lock the versions down here for all other subprojects.
     *
     * Note:
     * We use strictly here because we do not have any better means to do this at the moment.
     * Ideally we wound be able to say "lock down all the versions of the dependencies resolved for the distribution"
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. integration-tests/gradle/build.gradle.kts

        classpath("com.android.tools.build:gradle:$agpVersion") {
          exclude(
            group = "org.jetbrains.trove4j"
          ) // Might not be available on Maven Central and not needed for this test
        }
      }
    }
    
    subprojects {
      if (name.endsWith("Java")) {
        apply(plugin = "java-library")
      } else {
        apply(plugin = "com.android.application")
        the<com.android.build.gradle.AppExtension>().compileSdkVersion(30)
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/build.gradle

        // Because this is done directly by the plugin application logic, we can't use a ComponentMetadataRule to exclude it.
        // See: https://github.com/gradle/guides/blob/ba018cec535d90f75876bfcca29381d213a956cc/subprojects/gradle-guides-plugin/src/main/java/org/gradle/docs/samples/internal/SamplesDocumentationPlugin.java#L335
        exclude([group: "org.slf4j", module: "slf4j-simple"])
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

                    @TaskAction
                    def go() {
                        ${server.callFromBuildUsingExpression("projectName")}
                    }
                }
    
                subprojects {
                    tasks.create('slow', SlowTask)
                }
                project(':a') {
                    tasks.slow.dependsOn(project(':b').tasks.slow, project(':c').tasks.slow)
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top