Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for childProjects (0.28 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilderTest.groovy

            def includedBuild2 = Mock(IncludedBuildInternal)
    
            rootProject.childProjects >> [].toSet()
            rootProject.identityPath >> Path.path(":some:identity:path")
    
            includedProject1.childProjects >> [].toSet()
            includedProject1.identityPath >> Path.path(":some:identity:path")
            includedProject2.childProjects >> [].toSet()
            includedProject2.identityPath >> Path.path(":some:identity:path")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.Project.xml

                </tr>
                <tr>
                    <td>buildFile</td>
                </tr>
                <tr>
                    <td>buildscript</td>
                </tr>
                <tr>
                    <td>childProjects</td>
                </tr>
                <tr>
                    <td>configurations</td>
                </tr>
                <tr>
                    <td>convention</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/GenerateIdeaModuleTest.groovy

            assert childProject.idea.module.name == "child"
            def existingOutputFolder = childProject.ideaModule.outputFile.parentFile
    
            when:
            childProject.idea.module.name = "foo"
    
            then:
            childProject.idea.module.name == "foo"
            childProject.ideaModule.outputFile.name == "foo.iml"
            childProject.ideaModule.outputFile.parentFile == existingOutputFolder
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

        }
    
        def "adds extension to child project"() {
            when:
            applyPluginToProjects()
    
            then:
            childProject.idea instanceof IdeaModel
            childProject.idea.project == null
            childProject.idea.module.outputFile == childProject.file("child.iml")
        }
    
        def "adds 'ideaProject' task to root project"() {
            when:
            applyPluginToProjects()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolverTest.groovy

            def task2 = task('task')
            def childTasks = Mock(TaskContainerInternal)
            def childProject = Mock(ProjectInternal) {
                _ * getTasks() >> childTasks
                _ * getChildProjectsUnchecked() >> [:]
            }
    
            _ * project.childProjectsUnchecked >> [child: childProject]
    
            when:
            def results = resolver.selectWithName('task', project, true)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectPropertySettingBuildLoaderTest.groovy

            _ * gradle.rootProject >> rootProject
            _ * rootProject.childProjectsUnchecked >> [child: childProject]
            _ * childProject.childProjectsUnchecked >> [:]
            _ * rootProject.projectDir >> rootProjectDir
            _ * childProject.projectDir >> childProjectDir
            _ * rootProject.extensions >> rootExtension
            _ * childProject.extensions >> childExtension
            _ * rootExtension.extraProperties >> rootProperties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/initialization/InstantiatingBuildLoaderTest.groovy

            and:
            1 * gradle.setRootProject(rootProject)
            1 * gradle.setDefaultProject(childProject)
    
            and:
            rootProject.childProjectsUnchecked['child'].is childProject
        }
    
        ProjectDescriptor descriptor(String name, ProjectDescriptor parent, File projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreatorTest.groovy

    import org.gradle.util.TestUtil
    
    class EclipseDependenciesCreatorTest extends AbstractProjectBuilderSpec {
        private ProjectInternal childProject
        private EclipseClasspath eclipseClasspath
        private EclipseDependenciesCreator dependenciesProvider
    
        def setup() {
            childProject = TestUtil.createChildProject(project, "child", temporaryFolder.testDirectory.file("child"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaProjectTest.groovy

            project.apply plugin: IdeaPlugin
            childProject.apply plugin: IdeaPlugin
            anotherChildProject.apply plugin: IdeaPlugin
            project.apply(plugin: JavaPlugin)
            childProject.apply(plugin: JavaPlugin)
            anotherChildProject.apply(plugin: JavaPlugin)
    
            and:
            project.targetCompatibility = JavaVersion.VERSION_1_5
            childProject.targetCompatibility = JavaVersion.VERSION_1_6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaDependenciesProviderTest.groovy

    import spock.lang.Specification
    
    class IdeaDependenciesProviderTest extends AbstractProjectBuilderSpec {
        private ProjectInternal childProject
        private IdeArtifactRegistry artifactRegistry
        private IdeaDependenciesProvider dependenciesProvider
    
        def setup() {
            childProject = TestUtil.createChildProject(project, "child", temporaryFolder.testDirectory.file("child"))
            artifactRegistry = Stub(IdeArtifactRegistry)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top