Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,869 for rootProject (0.14 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsOrderingIntegrationTest.groovy

                }
            """
    
            build1.settingsFile.setText("""
                pluginManagement {
                    includeBuild("../${build2.buildName}")
                }
                rootProject.name = "${build1.buildName}"
            """)
            build1.buildFile.setText("""
                plugins {
                    id("groovy-gradle-plugin")
                    id("${build2.projectPluginId}")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 11 09:38:08 UTC 2020
    - 7K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/RemoteSourceDependencyIntegrationTest.groovy

        GitHttpRepository repoC = new GitHttpRepository(httpServer, 'testC', temporaryFolder.getTestDirectory())
    
        def setup() {
            httpServer.start()
            settingsFile << """
                rootProject.name = 'consumer'
                gradle.rootProject {
                    allprojects {
                        configurations {
                            compile
                        }
                        tasks.register('resolve') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            def nestedChild2 = project("child2", nestedChild1, nestedBuild)
    
            expect:
            rootProject.toString() == "root project 'root'"
            rootProject.displayName == "root project 'root'"
            rootProject.path == ":"
            rootProject.buildTreePath == ':'
            rootProject.identityPath == Path.ROOT
    
            child1.toString() == "project ':child1'"
            child1.displayName == "project ':child1'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

             */
            createDirs("1", "2")
            settingsFile << """
                rootProject.name = 'root'
                include '1', '2'
            """
            buildFile << """
                subprojects {
                    task otherBuild(type:GradleBuild) {
                        dir = "\${rootProject.file('subprojects')}"
                        tasks = ['log']
                        buildName = project.name + "nested"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

            given:
            def outputs = new CompilationOutputsFixture(file("build/obj/main/debug"), [".o"])
            def app = new SwiftApp()
            settingsFile << "rootProject.name = 'app'"
            app.writeToProject(testDirectory)
            def main = file("src/main/swift/main.swift").makeOlder()
    
            buildFile << """
                apply plugin: 'swift-application'
             """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-monolithic/build.gradle

    subprojects {
        apply from: rootProject.file("common.gradle")
        apply from: rootProject.file("components.gradle")
    }
    
    apply from: file("common.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 191 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            crossProjectModelAccess.access(referrerProject, delegate.rootProject)
    
        override fun rootProject(action: Action<in Project>) {
            delegate.rootProject(action.withCrossProjectModelAccessCheck())
        }
    
        override fun allprojects(action: Action<in Project>) {
            // Use the delegate's implementation of `rootProject` to ensure that the action is only invoked once the rootProject is available
            delegate.rootProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginManagementSpec.java

         * Included plugin builds can contribute settings and project plugins.
         * @param rootProject The path to the root project directory for the build.
         *
         * @since 7.0
         */
        @Adding
        void includeBuild(String rootProject);
    
        /**
         * Includes a plugin build at the specified path to the composite build, with the supplied configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

        MavenLocalRepository localM2Repo
    
        def "setup"() {
            localM2Repo = m2.mavenRepo()
        }
    
        def "publishes nothing without defined publication"() {
            given:
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                apply plugin: 'maven-publish'
    
                group = 'group'
                version = '1.0'
    
                publishing {
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

        }
    
        def "can fetch GradleProject model for an included build project"() {
            settingsFile << """
                rootProject.name = 'root'
                includeBuild("included1")
                include("lib1")
            """
    
            file("included1/settings.gradle") << """
                rootProject.name = 'included1'
                include("lib2")
            """
    
            when: "fetching without Isolated Projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top