- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getCoreRealm (0.18 sec)
-
impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManager.java
*/ public interface ClassRealmManager { /** * Gets the class realm hosting the Maven core. * * @return The class realm hosting the Maven core, never {@code null}. */ ClassRealm getCoreRealm(); /** * Gets the class realm exposing the Maven API. This is basically a restricted view on the Maven core realm. * * @return The class realm exposing the Maven API, never {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java
wireRealm(classRealm, parentImports, foreignImports); populateRealm(classRealm, constituents); return classRealm; } public ClassRealm getCoreRealm() { return containerRealm; } public ClassRealm createProjectRealm(Model model, List<Artifact> artifacts) { Objects.requireNonNull(model, "model cannot be null");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (0)