strlst 0b0a8af375 changes 2 éve
..
gradle 90d641d2bb dslab: added ue(0|1) 3 éve
lib 90d641d2bb dslab: added ue(0|1) 3 éve
scripts 4946662e68 dslab: ue1 oops forgot monitoring sending udp packets 3 éve
src 0b0a8af375 changes 2 éve
README.md 90d641d2bb dslab: added ue(0|1) 3 éve
build.gradle 90d641d2bb dslab: added ue(0|1) 3 éve
gradlew 90d641d2bb dslab: added ue(0|1) 3 éve
gradlew.bat 90d641d2bb dslab: added ue(0|1) 3 éve
settings.gradle 90d641d2bb dslab: added ue(0|1) 3 éve

README.md

distributed systems lab

Using gradle

Compile & Test

Gradle is the build tool we are using. Here are some instructions:

Compile the project using the gradle wrapper:

./gradlew assemble

Compile and run the tests:

./gradlew build

Run the applications

The gradle config config contains several tasks that start application components for you. You can list them with

./gradlew tasks --all

And search for 'Other tasks' starting with run-. For example, to run the monitoring server, execute: (the --console=plain flag disables CLI features, like color output, that may break the console output when running a interactive application)

./gradlew --console=plain run-monitoring