Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for readManifestClasspathString (0.59 sec)

  1. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ManifestUtil.java

            return relativeUri.getRawPath();
        }
    
        public static List<URI> parseManifestClasspath(File jarFile) {
            List<URI> manifestClasspath = new ArrayList<URI>();
            for (String value : readManifestClasspathString(jarFile)) {
                try {
                    URI uri = new URI(value);
                    uri = jarFile.toURI().resolve(uri);
                    manifestClasspath.add(uri);
                } catch (URISyntaxException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top