Skip to content

Commit

Permalink
chore(*): bumping dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
notthetup committed Oct 10, 2024
1 parent a010949 commit e56b238
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ repositories {
}

dependencies {
api 'org.codehaus.groovy:groovy:2.5.20'
api 'org.jline:jline:3.21.0'
api 'org.apache.commons:commons-lang3:3.12.0'
api 'commons-io:commons-io:2.11.0'
api 'org.codehaus.groovy:groovy:2.5.23'
api 'org.jline:jline:3.25.0'
api 'org.apache.commons:commons-lang3:3.17.0'
api 'commons-io:commons-io:2.17.0'
api 'uk.com.robust-it:cloning:1.9.12'
api 'org.eclipse.jetty:jetty-server:9.4.50.v20221201'
api 'org.eclipse.jetty:jetty-servlet:9.4.50.v20221201'
api 'org.eclipse.jetty:jetty-rewrite:9.4.50.v20221201'
api 'org.eclipse.jetty.websocket:websocket-server:9.4.50.v20221201'
api 'com.google.code.gson:gson:2.10'
api 'org.eclipse.jetty:jetty-server:9.4.56.v20240826'
api 'org.eclipse.jetty:jetty-servlet:9.4.56.v20240826'
api 'org.eclipse.jetty:jetty-rewrite:9.4.56.v20240826'
api 'org.eclipse.jetty.websocket:websocket-server:9.4.56.v20240826'
api 'com.google.code.gson:gson:2.11.0'
api 'com.fazecast:jSerialComm:2.9.3'
testImplementation 'junit:junit:4.13.2'
testImplementation 'net.jodah:concurrentunit:0.4.6'
Expand Down Expand Up @@ -221,4 +221,4 @@ publishing {

signing {
sign publishing.publications.mavenJava
}
}
2 changes: 1 addition & 1 deletion src/main/java/org/arl/fjage/persistence/Store.java
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public long size() {
if (root == null) throw new FjageException("Store has been closed");
try {
return FileUtils.sizeOfDirectory(root);
} catch (IllegalArgumentException ex) {
} catch (IllegalArgumentException | UncheckedIOException ex) {
return 0;
}
}
Expand Down

0 comments on commit e56b238

Please sign in to comment.