Skip to content

Commit

Permalink
Update for forked java-commons and RMI Remote interface issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dlarge committed Apr 23, 2024
1 parent fb02df8 commit 193d6c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ plugins {

repositories {
maven { url "https://maven.google.com" }
maven { url "https://jitpack.io" }
mavenCentral()
}

Expand All @@ -49,7 +50,7 @@ ext {
fastutil : "8.2.2",
fiber4j : "1.1.0",
jackson : "2.9.8",
javaCommons : "2.3.6",
//javaCommons : "2.3.6",
jetty : "9.4.14.v20181114",
junit : "4.12",
scala : "2.12.6",
Expand Down Expand Up @@ -172,7 +173,8 @@ dependencies {
"com.github.akurilov:confuse:${depVersion.confuse}",
"com.github.akurilov:confuse-io-yaml:${depVersion.confuseIoYaml}",
"com.github.akurilov:fiber4j:${depVersion.fiber4j}",
"com.github.akurilov:java-commons:${depVersion.javaCommons}",
//"com.github.akurilov:java-commons:${depVersion.javaCommons}",
"com.github.dlarge:java-commons:master-SNAPSHOT",
"com.lmax:disruptor:${depVersion.disruptor}",
"io.prometheus:simpleclient:${depVersion.prometheus}",
"io.prometheus:simpleclient_servlet:${depVersion.prometheus}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.rmi.Remote;

public interface FileManager {
public interface FileManager extends Remote {

FileManager INSTANCE = new FileManagerImpl();

Expand Down

0 comments on commit 193d6c9

Please sign in to comment.