mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-29 07:20:35 +00:00
Rework
This commit is contained in:
@@ -25,6 +25,9 @@ public class LocalExec {
|
||||
// https://bugs.openjdk.org/browse/JDK-8360500
|
||||
env.remove("_JPACKAGE_LAUNCHER");
|
||||
|
||||
env.remove("_JAVA_OPTIONS");
|
||||
env.remove("JAVA_TOOL_OPTIONS");
|
||||
|
||||
return pb.start();
|
||||
} catch (Exception ex) {
|
||||
TrackEvent.withTrace("Local command finished")
|
||||
@@ -48,6 +51,9 @@ public class LocalExec {
|
||||
// https://bugs.openjdk.org/browse/JDK-8360500
|
||||
env.remove("_JPACKAGE_LAUNCHER");
|
||||
|
||||
env.remove("_JAVA_OPTIONS");
|
||||
env.remove("JAVA_TOOL_OPTIONS");
|
||||
|
||||
var process = pb.start();
|
||||
var out = process.getInputStream().readAllBytes();
|
||||
process.waitFor();
|
||||
|
||||
@@ -72,6 +72,7 @@ open module io.xpipe.app {
|
||||
requires com.fasterxml.jackson.core;
|
||||
requires com.fasterxml.jackson.databind;
|
||||
requires com.fasterxml.jackson.annotation;
|
||||
requires com.fasterxml.jackson.datatype.jsr310;
|
||||
requires net.synedra.validatorfx;
|
||||
requires io.xpipe.modulefs;
|
||||
requires static lombok;
|
||||
|
||||
+2
-2
@@ -229,7 +229,7 @@ def getCliJvmArgs() {
|
||||
// GC config
|
||||
jvmRunArgs += [
|
||||
'-XX:+UseG1GC',
|
||||
'-Xms50m',
|
||||
'-Xms60m',
|
||||
'-Xmx250m',
|
||||
// The default makes GC pauses longer for some reason
|
||||
'-XX:G1HeapRegionSize=4m'
|
||||
@@ -311,7 +311,7 @@ project.ext {
|
||||
ci = System.getenv('CI') != null
|
||||
obfuscate = true
|
||||
fullVersion = file("$rootDir/private_files.txt").exists()
|
||||
bundleCds = true
|
||||
bundleCds = ci && fullVersion
|
||||
|
||||
// Names
|
||||
productName = isStage ? 'XPipe PTB' : 'XPipe'
|
||||
|
||||
Reference in New Issue
Block a user