- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 37 for classworlds (0.08 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/internal/CoreRealm.java
* under the License. */ package org.apache.maven.internal; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; import org.codehaus.plexus.classworlds.ClassWorld; import org.codehaus.plexus.classworlds.realm.ClassRealm; /** * Access to core {@link ClassRealm}. * * @since 4.0.0 */ @Experimental public interface CoreRealm { /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/ClingSupport.java
*/ public ClingSupport() { this(new ClassWorld(CORE_CLASS_REALM_ID, Thread.currentThread().getContextClassLoader()), true); } /** * Ctor to be used when running in ClassWorlds Launcher. */ public ClingSupport(ClassWorld classWorld) { this(classWorld, false); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Feb 08 16:25:25 GMT 2025 - 3.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectRealmCache.java
import java.util.Collections; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.concurrent.ConcurrentHashMap; import org.codehaus.plexus.classworlds.realm.ClassRealm; import org.codehaus.plexus.classworlds.realm.NoSuchRealmException; import org.codehaus.plexus.personality.plexus.lifecycle.phase.Disposable; import org.eclipse.aether.graph.DependencyFilter; /**
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 3.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultExtensionRealmCache.java
import org.apache.maven.artifact.Artifact; import org.apache.maven.project.ExtensionDescriptor; import org.apache.maven.project.MavenProject; import org.codehaus.plexus.classworlds.realm.ClassRealm; import org.codehaus.plexus.classworlds.realm.NoSuchRealmException; import org.codehaus.plexus.personality.plexus.lifecycle.phase.Disposable; /** * Default extension realm cache implementation. Assumes cached data does not change.
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 4.8K bytes - Click Count (0) -
apache-maven/src/main/appended-resources/META-INF/LICENSE.vm
#* *##set ( $project.url = 'https://github.com/google/guice/' ) #* *##end #* *### #* *### Classworlds is in boot directory, not in lib #* *##if ( $project.artifact.artifactId == "plexus-classworlds" ) #* *##set ( $directory = 'boot' ) #* *##end #* *### #* *### copy license file to lib/$artifactId.license
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 4.3K bytes - Click Count (0) -
apache-maven/src/assembly/component.xml
<includes> <include>org.codehaus.plexus:plexus-classworlds</include> </includes> </dependencySet> <dependencySet> <useProjectArtifact>false</useProjectArtifact> <outputDirectory>lib</outputDirectory> <excludes> <exclude>org.codehaus.plexus:plexus-classworlds</exclude> </excludes> </dependencySet> </dependencySets> <fileSets>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Dec 10 16:40:06 GMT 2025 - 3.6K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/MavenUpCling.java
import org.apache.maven.cling.invoker.mvnup.UpgradeParser; import org.codehaus.plexus.classworlds.ClassWorld; /** * Maven upgrade CLI "new-gen". */ public class MavenUpCling extends ClingSupport { /** * "Normal" Java entry point. Note: Maven uses ClassWorld Launcher and this entry point is NOT used under normal * circumstances. */
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 3K bytes - Click Count (0) -
impl/maven-core/src/site/apt/plugin-execution-isolation.apt
----- The Maven Team ----- Maven plugin execution isolation Maven2 takes advantage of Plexus' ability to execute a component using a ClassWorlds ClassRealm that is populated with the JAR containing the component in question and all of its dependencies. Using ClassWorlds notation for realms we have the following: +-----+ [plexus.core] ^ | [plexus.core.maven] ^ ^
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManagerDelegate.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.classrealm; import org.codehaus.plexus.classworlds.realm.ClassRealm; /** * ClassRealmManagerDelegate is used to perform addition configuration of * class realms created by ClassRealmManager. * */ public interface ClassRealmManagerDelegate {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.1K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/resident/ResidentMavenInvokerTest.java
*/ @Order(100) public class ResidentMavenInvokerTest extends MavenInvokerTestSupport { @Override protected Invoker createInvoker(ClassWorld classWorld) { return new ResidentMavenInvoker( ProtoLookup.builder().addMapping(ClassWorld.class, classWorld).build(), null); } @Override protected Parser createParser() { return new MavenParser(); } @TestCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 10:47:37 GMT 2025 - 2.5K bytes - Click Count (0)