Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for relocatedSettingsFile (0.18 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsPluginIntegrationSpec.groovy

            settingsFile.createFile()
            executer.inDirectory(file("settings"))
            relocatedSettingsFile << "rootProject.projectDir = file('..')\n"
        }
    
        def "can apply plugin class from settings.gradle"() {
            when:
            createDirs("moduleA")
            relocatedSettingsFile << """
            apply plugin: SimpleSettingsPlugin
    
            class SimpleSettingsPlugin implements Plugin<Settings> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLoadingIntegrationTest.java

        @Test
        public void multiProjectBuildCanHaveSettingsFileAndRootBuildFileInSubDir() {
            TestFile buildFilesDir = getTestDirectory().file("root");
            TestFile relocatedSettingsFile = buildFilesDir.file("settings.gradle");
            relocatedSettingsFile.writelns(
                "includeFlat 'child'",
                "rootProject.projectDir = new File(settingsDir, '..')",
                "rootProject.buildFileName = 'root/build.gradle'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top