Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getTestOutputDirectory (0.06 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         *       <td>Compiled application classes and processed main resources</td>
         *     </tr>
         *     <tr>
         *       <td>{@link ProjectScope#TEST}</td>
         *       <td>{@code build.getTestOutputDirectory()}</td>
         *       <td>{@code target/test-classes}</td>
         *       <td>Compiled test classes and processed test resources</td>
         *     </tr>
         *     <tr>
         *       <td>{@code null} or other</td>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 07 13:11:07 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java

            if (isTestArtifact(artifact)) {
                if (project.hasLifecyclePhase("test-compile")) {
                    return new File(project.getBuild().getTestOutputDirectory());
                }
            } else {
                String type = artifact.getProperty("type", "");
                File outputDirectory = new File(project.getBuild().getOutputDirectory());
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:20:38 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    val = interpolate(org);
                    if (org != val) {
                        build.setOutputDirectory(val);
                    }
                    // TestOutputDirectory
                    org = build.getTestOutputDirectory();
                    val = interpolate(org);
                    if (org != val) {
                        build.setTestOutputDirectory(val);
                    }
                    // Extensions
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
Back to top