mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[FEATURE] moduleConf in SYSTEM_ARGS
This commit is contained in:
parent
88f1eaf750
commit
d720328bc4
1 changed files with 16 additions and 1 deletions
|
@ -145,7 +145,22 @@ public void start(boolean pipeOutput) throws IOException, InterruptedException {
|
||||||
if (params.profile.getClassLoaderConfig() == ClientProfile.ClassLoaderConfig.AGENT) {
|
if (params.profile.getClassLoaderConfig() == ClientProfile.ClassLoaderConfig.AGENT) {
|
||||||
processArgs.add("-javaagent:".concat(IOHelper.getCodeSource(ClientLauncherEntryPoint.class).toAbsolutePath().toString()));
|
processArgs.add("-javaagent:".concat(IOHelper.getCodeSource(ClientLauncherEntryPoint.class).toAbsolutePath().toString()));
|
||||||
} else if (params.profile.getClassLoaderConfig() == ClientProfile.ClassLoaderConfig.SYSTEM_ARGS) {
|
} else if (params.profile.getClassLoaderConfig() == ClientProfile.ClassLoaderConfig.SYSTEM_ARGS) {
|
||||||
systemClassPath.addAll(ClientLauncherEntryPoint.resolveClassPath(new HashSet<>(), workDir, params.actions, params.profile)
|
Set<Path> ignorePath = new HashSet<>();
|
||||||
|
var moduleConf = params.profile.getModuleConf();
|
||||||
|
if(moduleConf != null) {
|
||||||
|
if(moduleConf.modulePath != null && !moduleConf.modulePath.isEmpty()) {
|
||||||
|
processArgs.add("-p");
|
||||||
|
for(var e : moduleConf.modulePath) {
|
||||||
|
ignorePath.add(Path.of(e));
|
||||||
|
}
|
||||||
|
processArgs.add(String.join(File.pathSeparator, moduleConf.modulePath));
|
||||||
|
}
|
||||||
|
if(moduleConf.modules != null && !moduleConf.modules.isEmpty()) {
|
||||||
|
processArgs.add("--add-modules");
|
||||||
|
processArgs.add(String.join(",", moduleConf.modules));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
systemClassPath.addAll(ClientLauncherEntryPoint.resolveClassPath(ignorePath, workDir, params.actions, params.profile)
|
||||||
.map(Path::toString)
|
.map(Path::toString)
|
||||||
.toList());
|
.toList());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue