Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testResourceDirs (0.15 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         *
         * @since 4.7
         */
        @Deprecated
        public void setTestResourceDirs(Set<File> testResourceDirs) {
            this.testResourceDirs = testResourceDirs;
        }
    
        /**
         * The complete and up-to-date collection of test resource directories.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.xml

                    <td><literal>[]</literal></td>
                    <td>resource dirs from <literal>project.sourceSets.main.resources</literal></td>
                </tr>
                <tr>
                    <td>testResourceDirs</td>
                    <td><literal>[]</literal></td>
                    <td>resource dirs from <literal>project.sourceSets.test.resources</literal></td>
                </tr>
                <tr>
                    <td>testSources</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

                    return resourceDirs;
                }
            });
            Set<File> testResourceDirs = new LinkedHashSet<>();
            conventionMapping.map("testResourceDirs", new Callable<Set<File>>() {
                @Override
                public Set<File> call() throws Exception {
                    return testResourceDirs;
                }
            });
            Set<File> excludeDirs = new LinkedHashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== IdeaModule API Cleanup
    
    The deprecated `testSourceDirs` and `testResourceDirs` properties of the `IdeaModule` type have been removed.
    This affects the `org.gradle.plugins.ide.idea.model.IdeaModule` type, not the `org.gradle.tooling.model.idea.IdeaModule` type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top