Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 243 for subproject1 (0.18 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.copy(action)
    
        override fun getDescription(): String? =
            delegate.description
    
        override fun subprojects(action: Action<in Project>) =
            delegate.subprojects(action)
    
        override fun subprojects(configureClosure: Closure<*>) =
            delegate.subprojects(configureClosure)
    
        override fun getBuildscript(): ScriptHandler =
            delegate.buildscript
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/build.gradle

    subprojects {
        apply plugin: "groovy"
    
        dependencies {
            implementation localGroovy()
        }
    
        compileJava.options.fork = true
    
        // force creation of multiple daemons for Java compilation by alternating between two distinct sets of JVM args
        def count = (project.name - "project") as int
        compileJava.options.forkOptions.jvmArgs = count % 2 ? ["-dsa"] : ["-esa"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 388 bytes
    - Viewed (0)
  3. platforms/software/test-suites-base/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """Base for test suites.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build.
    
    This project is separate from testing-base to avoid needing to be Java 6 compatible.
    """
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":base-services"))
        api(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 950 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/BuildOperationCrossProjectConfigurator.java

        }
    
        @Override
        public void project(ProjectInternal project, Action<? super Project> configureAction) {
            runProjectConfigureAction(project, configureAction);
        }
    
        @Override
        public void subprojects(Iterable<? extends ProjectInternal> projects, Action<? super Project> configureAction) {
            runBlockConfigureAction(SUBPROJECTS_DETAILS, projects, configureAction);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:00:41 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

        }
    
        String providerOf(String expression) {
            return "project.provider { $expression }"
        }
    
        def setup() {
            createDirs("subproject")
            settingsFile("""
                include "subproject"
    
                rootProject.name = "${PROJECT_NAME}"
                gradle.rootProject {
                    version = "${PROJECT_VERSION}"
                }
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

                it.path == 'b1'
            }
        }
    
        def "EclipseProject model honours custom project name"() {
            when:
            buildB.buildFile << """
                subprojects {
                    apply plugin: 'eclipse'
                    eclipse {
                        project.name = project.name + "-renamed"
                    }
                }
                project(":b1") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

            settingsFile << "include 'child'"
            buildFile """
    class ContactConvention {
        def contacts(String arg) { arg }
    }
    
    convention.plugins.contacts = new ContactConvention()
    
    subprojects {
        ext.contacts = { throw new RuntimeException() }
        assert contacts("a") == "a"
    }
    """
    
            executer.expectDocumentedDeprecationWarning(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

        private
        val buildModel = CIBuildModel(
            projectId = "Gradle_Check",
            branch = VersionedSettingsBranch("master"),
            buildScanTags = listOf("Check"),
            subprojects = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json"))
        )
    
        @Test
        fun `create correct PerformanceTest build type for Linux`() {
            val performanceTest = PerformanceTest(
                buildModel,
                Stage(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. platforms/jvm/testing-junit-platform/build.gradle.kts

    Instead :testing-jvm-infrastructure loads classes from this project via reflection due to the above noted Java version issue.
    We make sure to include this subproject as a runtime dependency in :distributions-core to ensure we include it with the Gradle distribution.
    """
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.testingBaseInfrastructure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 986 bytes
    - Viewed (0)
  10. testing/soak/build.gradle.kts

            because("Kotlin soak tests use AssertJ")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    tasks.register("soakTest") {
        description = "Run all soak tests defined in the :soak subproject"
        group = "CI Lifecycle"
        dependsOn(":soak:forkingIntegTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top