Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for MetadataGraphTransformationException (0.13 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphTransformationException.java

    /**
     */
    @Deprecated
    public class MetadataGraphTransformationException extends Exception {
    
        private static final long serialVersionUID = -4029897098314019152L;
    
        public MetadataGraphTransformationException() {}
    
        public MetadataGraphTransformationException(String message) {
            super(message);
        }
    
        public MetadataGraphTransformationException(Throwable cause) {
            super(cause);
        }
    
    Created: 2026-04-05 03:35
    - Last Modified: 2024-10-25 12:31
    - 1.4K bytes
    - Click Count (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java

        @Override
        public ClasspathContainer transform(MetadataGraph dirtyGraph, ArtifactScopeEnum scope, boolean resolve)
                throws MetadataGraphTransformationException {
            try {
                if (dirtyGraph == null || dirtyGraph.isEmpty()) {
                    return null;
                }
    
    Created: 2026-04-05 03:35
    - Last Modified: 2025-07-23 17:27
    - 5.1K bytes
    - Click Count (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java

            return null;
        }
        // ----------------------------------------------------------------------------
        public ClasspathContainer getClasspath(ArtifactScopeEnum scope)
                throws MetadataGraphTransformationException, MetadataResolutionException {
            if (classpathTransformation == null) {
                return null;
            }
    
            MetadataGraph dirtyGraph = getGraph();
            if (dirtyGraph == null) {
    Created: 2026-04-05 03:35
    - Last Modified: 2024-10-25 12:31
    - 5.4K bytes
    - Click Count (0)
Back to Top