strlst 0810e81095 added what must be added | %!s(int64=2) %!d(string=hai) anos | |
---|---|---|
.idea | %!s(int64=2) %!d(string=hai) anos | |
examples | %!s(int64=2) %!d(string=hai) anos | |
gradle | %!s(int64=2) %!d(string=hai) anos | |
keys | %!s(int64=2) %!d(string=hai) anos | |
lib | %!s(int64=2) %!d(string=hai) anos | |
scripts | %!s(int64=2) %!d(string=hai) anos | |
src | %!s(int64=2) %!d(string=hai) anos | |
.gitignore | %!s(int64=2) %!d(string=hai) anos | |
README.md | %!s(int64=2) %!d(string=hai) anos | |
build.gradle | %!s(int64=2) %!d(string=hai) anos | |
gradlew | %!s(int64=2) %!d(string=hai) anos | |
gradlew.bat | %!s(int64=2) %!d(string=hai) anos | |
settings.gradle | %!s(int64=2) %!d(string=hai) anos |
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
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