Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 186 for rootProject (0.25 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r44/ToolingApiEclipseModelSourceDirectoryOutputCrossVersionSpec.groovy

    @TargetGradleVersion(">=4.4")
    class ToolingApiEclipseModelSourceDirectoryOutputCrossVersionSpec extends ToolingApiSpecification {
    
        def "Source directories have default output"() {
            setup:
            settingsFile << 'rootProject.name = "root"'
            buildFile << "apply plugin: 'java'"
            file('src/main/java').mkdirs()
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleCycleCrossVersionSpec.groovy

    @TargetGradleVersion(">=6.8")
    class CompositeBuildModuleCycleCrossVersionSpec extends ToolingApiSpecification {
    
        private compositeWithDirectIncludeCycle() {
            settingsFile << """
                rootProject.name = 'module-root'
                includeBuild('module-a')
            """
            file('module-a').mkdir()
            file('module-b').mkdir()
            file('module-a/settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/daemon-jvm/customized-task/kotlin/settings.gradle.kts

    rootProject.name = "customized-task"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 17:16:48 UTC 2024
    - 37 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/daemon-jvm/customized-task/groovy/settings.gradle

    rootProject.name = 'customized-task'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 17:16:48 UTC 2024
    - 37 bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            createDirs("hello", "log")
            settingsFile << """
                rootProject.name = 'app'
                includeBuild 'hello'
                includeBuild 'log'
            """
            file("hello/settings.gradle") << "rootProject.name = 'hello'"
            file("log/settings.gradle") << "rootProject.name = 'log'"
    
            def app = new SwiftAppWithLibraries()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

        def "Eclipse model provides javadoc location via classpath attributes"() {
            setup:
            settingsFile << 'rootProject.name = "root"'
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               ${mavenCentralRepository()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

        @TargetGradleVersion(">=3.5 <4.0")
        def "generates events for interleaved project configuration and dependency resolution"() {
            given:
            settingsFile << """
    
                rootProject.name = 'multi'
                include 'a', 'b'
            """
            buildFile << """
                allprojects { apply plugin: 'java-library' }
                dependencies {
                    api project(':a')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                    }
    
                    dependencies {
                        add('default', 'org:module:1.0')
                    }
            """
            file("included/settings.gradle") << """
                rootProject.name = 'included'
            """
            buildFile << """
                dependencies {
                    conf 'com.acme:included:1.0'
                }
            """
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            }
    
            where:
            invocation               | accessedProjects | message
            "configure(rootProject)" | 1                | "another project ':'"
            "rootProject"            | 1                | "another project ':'"
            "allprojects"            | 2                | "subprojects of project ':'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

            }
    
            then:
            publications.publications.empty
        }
    
        @TargetGradleVersion(">=3.0 <7.0")
        def "Ivy repository based publication"() {
            settingsFile << "rootProject.name = 'test.project'"
            buildFile <<
    """
    apply plugin: "base"
    
    version = 1.0
    group = "test.group"
    
    uploadArchives {
        repositories {
            ivy { url uri("ivy-repo") }
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top