Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for testSourceDirectory (0.08 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    val = interpolate(org);
                    if (org != val) {
                        build.setScriptSourceDirectory(val);
                    }
                    // TestSourceDirectory
                    org = build.getTestSourceDirectory();
                    val = interpolate(org);
                    if (org != val) {
                        build.setTestSourceDirectory(val);
                    }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        } else {
                            hasScript |= Language.SCRIPT.equals(language);
                        }
                    }
                    /*
                     * `sourceDirectory`, `testSourceDirectory` and `scriptSourceDirectory`
                     * are ignored if the POM file contains at least one <source> element
                     * for the corresponding scope and language. This rule exists because
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  3. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            if (src != null) {
                if (sourceDominant || target.getTestSourceDirectory() == null) {
                    target.setTestSourceDirectory(src);
                    target.setLocation("testSourceDirectory", source.getLocation("testSourceDirectory"));
                }
            }
        }
    
        protected void mergeBuild_OutputDirectory(
                Build target, Build source, boolean sourceDominant, Map<Object, Object> context) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertPathWithNormalizedFileSeparators(pom.getValue("build/sourceDirectory"));
            assertPathWithNormalizedFileSeparators(pom.getValue("build/testSourceDirectory"));
            assertPathWithNormalizedFileSeparators(pom.getValue("build/resources[1]/directory"));
            assertPathWithNormalizedFileSeparators(pom.getValue("build/testResources[1]/directory"));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

              <type>String</type>
              <annotations>
                <annotation>@Deprecated(since = "4.0.0")</annotation>
              </annotations>
            </field>
            <field>
              <name>testSourceDirectory</name>
              <version>4.0.0+</version>
              <required>true</required>
              <description>
                This element specifies a directory containing the unit test source of the
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
Back to top