Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getOutputDirectory (0.08 sec)

  1. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

                Reporting target, Reporting source, boolean sourceDominant, Map<Object, Object> context) {
            String src = source.getOutputDirectory();
            if (src != null) {
                if (sourceDominant || target.getOutputDirectory() == null) {
                    target.setOutputDirectory(src);
                    target.setLocation("outputDirectory", source.getLocation("outputDirectory"));
                }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            if (includeTestDir) {
                String d = getBuild().getTestOutputDirectory();
                if (d != null) {
                    list.add(d);
                }
            }
            String d = getBuild().getOutputDirectory();
            if (d != null) {
                list.add(d);
            }
            for (Artifact a : getArtifacts()) {
                final File f = a.getFile();
                if (f != null && scopeFilter.test(a.getScope())) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    Function<ProjectScope, String> outputDirectory = (scope) -> {
                        if (scope == ProjectScope.MAIN) {
                            return build.getOutputDirectory();
                        } else if (scope == ProjectScope.TEST) {
                            return build.getTestOutputDirectory();
                        } else {
                            return build.getDirectory();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
Back to top