Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getInputStream (0.05 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                        if (pluginDescriptorEntry != null) {
                            pluginDescriptor = parsePluginDescriptor(
                                    () -> pluginJar.getInputStream(pluginDescriptorEntry),
                                    plugin,
                                    pluginFile.getAbsolutePath());
                        }
                    }
                } else {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Dec 09 16:35:21 GMT 2025
    - 46.4K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            public Path getPath() {
                return null;
            }
    
            @Override
            @Nonnull
            public InputStream openStream() throws IOException {
                return modelSource.getInputStream();
            }
    
            @Override
            @Nonnull
            public String getLocation() {
                return modelSource.getLocation();
            }
    
            @Override
            @Nullable
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 17:20:31 GMT 2025
    - 51.8K bytes
    - Click Count (0)
Back to Top