Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getClassWorld (0.16 sec)

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

        }
    
        public String[] getArgs() {
            return args;
        }
    
        public CommandLine getCommandLine() {
            return commandLine;
        }
    
        public ClassWorld getClassWorld() {
            return classWorld;
        }
    
        public String getWorkingDirectory() {
            return workingDirectory;
        }
    
        public File getMultiModuleProjectDirectory() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/CoreRealm.java

        ClassRealm getRealm();
    
        /**
         * Shorthand method to obtain the {@link ClassWorld} used for Maven Core.
         *
         * @return the class world in use.
         */
        @Nonnull
        default ClassWorld getClassWorld() {
            return getRealm().getWorld();
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

            this.repositorySystemSessionFactory = repositorySystemSessionFactory;
            this.coreExports = coreExports;
            this.classWorld = ((DefaultPlexusContainer) container).getClassWorld();
            this.parentRealm = container.getContainerRealm();
            this.ideWorkspaceReader = ideWorkspaceReader;
            this.repoSystem = repoSystem;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        @Inject
        public DefaultClassRealmManager(
                CoreRealm coreRealm, List<ClassRealmManagerDelegate> delegates, CoreExports exports) {
            this.world = coreRealm.getClassWorld();
            this.containerRealm = coreRealm.getRealm();
            this.delegates = delegates;
    
            Map<String, ClassLoader> foreignImports = exports.getExportedPackages();
    
    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