Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createProjectRealm (0.1 sec)

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

         *            missing file) will automatically be excluded from the realm.
         * @return The new project realm, never {@code null}.
         */
        ClassRealm createProjectRealm(Model model, List<Artifact> artifacts);
    
        /**
         * Creates a new class realm for the specified build extension.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

            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");
    
            ClassLoader parent = getMavenApiRealm();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top