Various fixes

This commit is contained in:
crschnick 2024-08-09 15:38:20 +00:00
parent 9860b0c10f
commit 99971caba5
6 changed files with 11 additions and 12 deletions

View file

@ -55,8 +55,8 @@ dependencies {
api ('org.kohsuke:github-api:1.323') {
exclude group: 'org.apache.commons', module: 'commons-lang3'
}
api 'org.apache.commons:commons-lang3:3.15.0'
api 'io.sentry:sentry:7.12.1'
api 'org.apache.commons:commons-lang3:3.16.0'
api 'io.sentry:sentry:7.13.0'
api 'commons-io:commons-io:2.16.1'
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.2"
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.17.2"
@ -65,8 +65,8 @@ dependencies {
api group: 'org.kordamp.ikonli', name: 'ikonli-javafx', version: "12.2.0"
api group: 'org.kordamp.ikonli', name: 'ikonli-material-pack', version: "12.2.0"
api group: 'org.kordamp.ikonli', name: 'ikonli-feather-pack', version: "12.2.0"
api group: 'org.slf4j', name: 'slf4j-api', version: '2.0.13'
api group: 'org.slf4j', name: 'slf4j-jdk-platform-logging', version: '2.0.13'
api group: 'org.slf4j', name: 'slf4j-api', version: '2.0.15'
api group: 'org.slf4j', name: 'slf4j-jdk-platform-logging', version: '2.0.15'
api 'io.xpipe:modulefs:0.1.5'
api 'net.synedra:validatorfx:0.4.2'
api files("$rootDir/gradle/gradle_scripts/atlantafx-base-2.0.2.jar")
@ -94,6 +94,7 @@ run {
systemProperty 'io.xpipe.app.logLevel', "trace"
systemProperty 'io.xpipe.app.fullVersion', rootProject.fullVersion
systemProperty 'io.xpipe.app.staging', isStage
// systemProperty 'io.xpipe.beacon.port', "30000"
// Apply passed xpipe properties
for (final def e in System.getProperties().entrySet()) {

View file

@ -208,10 +208,6 @@ public interface ShellControl extends ProcessControl {
ShellControl singularSubShell(ShellOpenFunction command);
void writeLineAndReadEcho(String command) throws Exception;
void writeLineAndReadEcho(String command, boolean log) throws Exception;
void cd(String directory) throws Exception;
default CommandControl command(String command) {

View file

@ -118,7 +118,9 @@ public interface ShellDialect {
CommandControl printUsernameCommand(ShellControl shellControl);
String getPrintExitCodeCommand(String prefix, String suffix);
String getPrintStartEchoCommand(String prefix);
String getPrintExitCodeCommand(String id, String prefix, String suffix);
int assignMissingExitCode();

View file

@ -1,4 +1,4 @@
name=Commons Lang
version=3.15.0
version=3.16.0
license=Apache License 2.0
link=https://commons.apache.org/proper/commons-lang/

View file

@ -1,4 +1,4 @@
name=Sentry Java
version=7.6.0
version=7.13.0
license=MIT License
link=https://github.com/getsentry/sentry-java

View file

@ -1,4 +1,4 @@
name=SLF4J
version=2.0.13
version=2.0.15
license=MIT License
link=https://www.slf4j.org/