Žiadny popis

strlst 6485a01a88 Merge branch 'ue1-migration' of strlst/dslab into master 3 rokov pred
.idea 2b4feadf05 misc changes 3 rokov pred
examples a1f3764cc3 miscellaneous things 3 rokov pred
gradle 765975e514 initial commit 3 rokov pred
keys 765975e514 initial commit 3 rokov pred
lib 765975e514 initial commit 3 rokov pred
scripts a1f3764cc3 miscellaneous things 3 rokov pred
src a1f3764cc3 miscellaneous things 3 rokov pred
.gitignore 2b4feadf05 misc changes 3 rokov pred
README.md 765975e514 initial commit 3 rokov pred
build.gradle 765975e514 initial commit 3 rokov pred
gradlew 765975e514 initial commit 3 rokov pred
gradlew.bat 765975e514 initial commit 3 rokov pred
settings.gradle 765975e514 initial commit 3 rokov pred

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