sblendorio / petscii-bbs

A Java framework for building highly customizable PETSCII-enabled BBS, accessible from Commodore 64/128
Mozilla Public License 2.0
119 stars 16 forks source link

no list of available BBSes #18

Closed ch0mik closed 4 years ago

ch0mik commented 4 years ago

$ java -jar petscii-bbs-1.0-SNAPSHOT.jar usage: petscii-bbs-1.0-SNAPSHOT.jar -b,--bbs Run specific BBS (mandatory - see list below) -h,--help Displays help -p,--port TCP port used by server process (default 6510) -t,--timeout Socket timeout in millis (default 60 minutes) List of available BBS:

no list of available BBSes - what is wrong ?

PS. I build it via docker docker run -it --rm -v "$(pwd)":/tmp/bbsjava/petscii-bbs -w /tmp/bbsjava/petscii-bbs maven mvn clean install package

and then run it via java -jar target/petscii-bbs-1.0-SNAPSHOT.jar

log : https://pastebin.pl/view/4bcb467f

sblendorio commented 4 years ago

I will try to do the same ASAP. Meanwhile, what if you take the .jar from Docker and run it on local machine?

ch0mik commented 4 years ago

Yes, The Docker Container has maped local path to src from git. The target is too on my local path. Next, I run jar from target java -jar target/petscii-bbs-1.0-SNAPSHOT.jar from ma local path.

sblendorio commented 4 years ago

Just replicated it. Which version of JRE are you using, running the jar file?

Please try JRE 1.8 and let me know

sblendorio commented 4 years ago

Just made a commit 264e84edec71de434aece267d5a331ea5dbabbc8 that should have fixed your problem. Do try also to run jar file with Java 11+ and let me know.

Now minimum JDK required is 1.8 (instead of 1.7).

ch0mik commented 4 years ago

Hi!, it works ! ThX. Regards Pawel