Initial commit (v2)

This commit is contained in:
Ben Goldsworthy 2020-06-24 10:51:22 +01:00
parent 36d4aaac81
commit 3a07a83a85
15 changed files with 856 additions and 310 deletions

1
bin/1. rmireg.bat Executable file
View file

@ -0,0 +1 @@
start rmiregistry

3
bin/2. compile.bat Executable file
View file

@ -0,0 +1,3 @@
set CLASSPATH=%CLASSPATH%;C:\JGroups\jgroups-3.6.0.Final.jar;
javac -Xlint:unchecked *.java
pause

3
bin/3. startServer.bat Executable file
View file

@ -0,0 +1,3 @@
set CLASSPATH=%CLASSPATH%;C:\JGroups\jgroups-3.6.0.Final.jar;
java -Djava.net.preferIPv4Stack=true AuctionServer
pause

3
bin/4. startClient.bat Executable file
View file

@ -0,0 +1,3 @@
set /p id="Username (leave blank for new user): "
java -Djava.net.preferIPv4Stack=true AuctionClient %id%
pause

View file

@ -1 +0,0 @@
javac *.java && start rmiregistry

View file

@ -1 +0,0 @@
javac *.java && java AuctionClient

View file

@ -1 +0,0 @@
javac *.java && java AuctionServer