Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for classrealm (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

            }
    
            ClassRealm classRealm = newRealm(baseRealmId);
    
            if (parent != null) {
                classRealm.setParentClassLoader(parent);
            }
    
            callDelegates(classRealm, type, parent, parentImports, foreignImports, constituents);
    
            wireRealm(classRealm, parentImports, foreignImports);
    
            populateRealm(classRealm, constituents);
    
            return classRealm;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                }
    
                return new ProjectRealmCache.CacheRecord(null, null);
            }
    
            List<ClassRealm> extensionRealms = new ArrayList<>();
    
            Map<ClassRealm, List<String>> exportedPackages = new HashMap<>();
    
            Map<ClassRealm, List<String>> exportedArtifacts = new HashMap<>();
    
            List<Artifact> publicArtifacts = new ArrayList<>();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java

            return jars;
        }
    
        protected ClassRealm setupContainerRealm(
                Logger logger,
                ClassWorld classWorld,
                ClassRealm coreRealm,
                List<Path> extClassPath,
                List<CoreExtensionEntry> extensions)
                throws Exception {
            if (!extClassPath.isEmpty() || !extensions.isEmpty()) {
                ClassRealm extRealm = classWorld.newRealm("maven.ext", null);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  4. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

                    return desc;
                }
            }
            return null;
        }
    
        public void setClassRealm(ClassRealm classRealm) {
            this.classRealm = classRealm;
        }
    
        public ClassRealm getClassRealm() {
            return classRealm;
        }
    
        public void setIntroducedDependencyArtifacts(Set<Artifact> introducedDependencyArtifacts) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

        }
    
        /**
         * TODO pluginDescriptor classRealm and artifacts are set as a side effect of this
         *      call, which is not nice.
         * @throws PluginResolutionException
         */
        @Override
        public ClassRealm getPluginRealm(MavenSession session, PluginDescriptor pluginDescriptor)
                throws PluginResolutionException, PluginManagerException {
            ClassRealm pluginRealm = pluginDescriptor.getClassRealm();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. impl/maven-core/plugin-manager.txt

    plugin artifact and its dependency artifacts will be loaded in an isolated ClassRealm which is simply an extension of the standard URLClassLoader. Mercury would be responsible for resolving and retrieving the dependencies which would then be used to populate a ClassRealm where there would be a connection to the host applications ClassRealm as the parent but the search order would be child first, and the parent ClassRealm can optionally choose to limit the searching to particular classes. The application...
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jan 22 11:03:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

    import org.apache.maven.api.services.DependencyResolverResult;
    import org.apache.maven.api.services.PathScopeRegistry;
    import org.apache.maven.api.xml.XmlNode;
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.classrealm.ClassRealmManager;
    import org.apache.maven.di.Injector;
    import org.apache.maven.di.Key;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.execution.scope.internal.MojoExecutionScope;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

    import org.codehaus.plexus.DefaultPlexusContainer;
    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.classworlds.ClassWorld;
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    import org.eclipse.aether.RepositorySystem;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.RepositorySystemSession.CloseableSession;
    import org.eclipse.aether.artifact.Artifact;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/extensions/BootstrapCoreExtensionManager.java

    import org.codehaus.plexus.DefaultPlexusContainer;
    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.classworlds.ClassWorld;
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    import org.eclipse.aether.RepositorySystem;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.RepositorySystemSession.CloseableSession;
    import org.eclipse.aether.artifact.Artifact;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.project.MavenProject;
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Common code that is shared by the LifecycleModuleBuilder and the LifeCycleWeaveBuilder
     *
     * @since 3.0
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top