strlst 0b0a8af375 changes | преди 2 години | |
---|---|---|
.. | ||
gradle | преди 3 години | |
lib | преди 3 години | |
scripts | преди 3 години | |
src | преди 2 години | |
README.md | преди 3 години | |
build.gradle | преди 3 години | |
gradlew | преди 3 години | |
gradlew.bat | преди 3 години | |
settings.gradle | преди 3 години |
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