Няма описание

strlst 0810e81095 added what must be added преди 3 години
.idea 25c0ca29a8 Implemented nameserver and domain lookup, also added handy lookup static in NameserverRemote преди 3 години
examples 0c13da7c7f new scripts and test data преди 3 години
gradle 765975e514 initial commit преди 3 години
keys 765975e514 initial commit преди 3 години
lib 765975e514 initial commit преди 3 години
scripts 0810e81095 added what must be added преди 3 години
src 6f1955d4d6 message client updates преди 3 години
.gitignore 2502f1b53d minor dmtpclient changes преди 3 години
README.md 765975e514 initial commit преди 3 години
build.gradle 765975e514 initial commit преди 3 години
gradlew 765975e514 initial commit преди 3 години
gradlew.bat 765975e514 initial commit преди 3 години
settings.gradle 765975e514 initial commit преди 3 години

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