Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for testSourceDirs (0.19 sec)

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

        public Set<File> getTestSourceDirs() {
            return testSourceDirs;
        }
    
        /**
         * <strong>This field is {@code @Deprecated}, please use {@link #getTestSources()} instead to access the new collection property.</strong>
         */
        @Deprecated
        public void setTestSourceDirs(Set<File> testSourceDirs) {
            this.testSourceDirs = testSourceDirs;
        }
    
        /**
    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

                </tr>
                <tr>
                    <td>contentRoot</td>
                    <td><literal>project.projectDir</literal></td>
                    <td/>
                </tr>
                <tr>
                    <td>testSourceDirs</td>
                    <td><literal>[]</literal></td>
                    <td>project.sourceSets.test.allJava</td>
                </tr>
                <tr>
                    <td>resourceDirs</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 project.getProjectDir();
                }
            });
            Set<File> testSourceDirs = new LinkedHashSet<>();
            conventionMapping.map("testSourceDirs", new Callable<Set<File>>() {
                @Override
                public Set<File> call() {
                    return testSourceDirs;
                }
            });
            Set<File> resourceDirs = 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/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r50/ToolingApiIdeaModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.idea.IdeaModule
    import org.gradle.tooling.model.idea.IdeaProject
    
    /**
     * NOTE: Starting with Gradle 5.0 the contract of IdeaModule#sourceDirs and IdeaModule#testSourceDirs changes in
     * a way that the resource directories are excluded.
     */
    @TargetGradleVersion(">=5.0")
    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. 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