Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getAbsolutePath (0.08 seconds)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                d);
                    } else if (!sysFile.isFile()) {
                        String msg = "refers to a non-existing file " + sysFile.getAbsolutePath();
                        systemPath = systemPath.replace('/', File.separatorChar).replace('\\', File.separatorChar);
                        String jdkHome =
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 03 15:06:05 GMT 2025
    - 66.8K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                setArtifacts(Collections.unmodifiableSet(project.getArtifacts()));
            }
    
            if (project.getParentFile() != null) {
                parentFile = new File(project.getParentFile().getAbsolutePath());
            }
    
            if (project.getPluginArtifacts() != null) {
                setPluginArtifacts(Collections.unmodifiableSet(project.getPluginArtifacts()));
            }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Aug 29 12:47:20 GMT 2025
    - 67K bytes
    - Click Count (0)
Back to Top