Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getTestOutputDir (0.17 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaCompilerOutput.java

    public interface IdeaCompilerOutput {
    
        /**
         * whether current module should inherit project's output directory.
         *
         * @return inherit output dirs flag
         * @see #getOutputDir()
         * @see #getTestOutputDir()
         */
        boolean getInheritOutputDirs();
    
        /**
         * directory to store module's production classes and resources.
         *
         * @return directory to store production output. non-<code>null</code> if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaCompilerOutput.java

            return outputDir;
        }
    
        public DefaultIdeaCompilerOutput setOutputDir(File outputDir) {
            this.outputDir = outputDir;
            return this;
        }
    
        @Override
        public File getTestOutputDir() {
            return testOutputDir;
        }
    
        public DefaultIdeaCompilerOutput setTestOutputDir(File testOutputDir) {
            this.testOutputDir = testOutputDir;
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModuleBuilderSupport.java

                        ? ideaModule.getInheritOutputDirs()
                        : false
                )
                .setOutputDir(ideaModule.getOutputDir())
                .setTestOutputDir(ideaModule.getTestOutputDir());
        }
    
        public static List<DefaultIdeaDependency> buildDependencies(Set<Dependency> resolvedDependencies) {
            List<DefaultIdeaDependency> dependencies = new LinkedList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 21:25:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top