Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for classrealm (0.04 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                }
            }
            return List.of();
        }
    
        private ClassRealm setupContainerRealm(
                ClassWorld classWorld, ClassRealm coreRealm, List<File> 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: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * without prior notice and must not be used by plugins.
         *
         * @param classRealm The class realm hosting the build extensions of this project, may be {@code null}.
         */
        public void setClassRealm(ClassRealm classRealm) {
            this.classRealm = classRealm;
        }
    
        /**
         * Gets the project's class realm. This class realm hosts the build extensions of the project.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

    import org.apache.maven.plugin.descriptor.Parameter;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.project.MavenProject;
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    import org.eclipse.aether.repository.RemoteRepository;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import static org.apache.maven.api.Lifecycle.AFTER;
    import static org.apache.maven.api.Lifecycle.AT;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
Back to top