strlst 0810e81095 added what must be added | před 3 roky | |
---|---|---|
.idea | před 3 roky | |
examples | před 3 roky | |
gradle | před 3 roky | |
keys | před 3 roky | |
lib | před 3 roky | |
scripts | před 3 roky | |
src | před 3 roky | |
.gitignore | před 3 roky | |
README.md | před 3 roky | |
build.gradle | před 3 roky | |
gradlew | před 3 roky | |
gradlew.bat | před 3 roky | |
settings.gradle | před 3 roky |
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