Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 263 for rootProject (0.27 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

                size() == 2
                with(get(0)) {
                    details.rootProject.name == 'thing'
                    details.rootProject.path == ':'
                    details.rootProject.projectDir == testDirectory.absolutePath
                    details.rootProject.children.size() == 3
                    with(details.rootProject.children.first() as Map<String, Object>) {
                        name == 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

            return buildFor(rootProject as ProjectInternal)
        }
    
        private
        fun buildFor(rootProject: ProjectInternal): StandardKotlinDslScriptsModel {
            val base = ScriptModelBase(rootProject)
            val nonProjectScriptModels = buildNonProjectScriptModels(rootProject, base)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/initialization/BuildInitializationBuildOperationsIntegrationTest.groovy

                    file("settings.gradle") << """ rootProject.name = "nested-nested-changed" """
                    dir("buildSrc") {
                        file("settings.gradle") << "rootProject.name = 'nested-nested-buildsrc-changed'"
                        file('build.gradle') << ""
                        dir("buildSrc") {
                            file("settings.gradle") << "rootProject.name = 'nested-nested-buildsrc-buildsrc-changed'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 27 15:36:36 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            given:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('other-build')
            """
            file('other-build/settings.gradle') << """
                rootProject.name = 'other-build'
                includeBuild('../third-build')
            """
            file('third-build/settings.gradle') << """
                rootProject.name = 'third-build'
                include('sub')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

                rootProject.name = 'root'
    '''
            projectDir.file('child1').mkdirs()
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
    
            then:
            rootProject != null
            rootProject.name == 'root'
            rootProject.parent == null
    
            rootProject.children.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            def projects = Mock(BuildProjectRegistry)
            def rootProject = Mock(ProjectState)
    
            _ * build.name >> name
            _ * build.projects >> projects
            _ * build.importableBuild >> true
            _ * build.projectsLoaded >> true
            _ * projects.rootProject >> rootProject
            _ * rootProject.projectPath >> Path.ROOT
            _ * rootProject.identityPath >> Path.path(":${name}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'app'
                include 'hello', 'log'
            """
            buildFile << """
                apply plugin: 'swift-application'
                application {
                    source.from rootProject.file('Sources/App')
                }
                xctest {
                    source.from rootProject.file('Tests/AppTests')
                }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

            when:
            gradle.rootProject
    
            then:
            thrown IllegalStateException
    
            when:
            def rootProject = project('root')
            gradle.rootProject = rootProject
    
            then:
            gradle.rootProject == rootProject
        }
    
        def "root project action is executed when projects are loaded"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

             .mutable()
             .attribute(Attribute.of('foo', String), 'value')
    """
        }
    
        def "fails to generate metadata for component with no variants"() {
            given:
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                apply plugin: 'maven-publish'
    
                group = 'group'
                version = '1.0'
    
                def comp = new TestComponent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

            setup:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('other-build')
            """
            file('other-build/settings.gradle') << """
                rootProject.name = 'other-build'
                includeBuild('../third-build')
            """
            file('third-build/settings.gradle') << """
                rootProject.name = 'third-build'
                include('sub')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top