strlst 8a6b57b911 Merge branch 'master' of notabug.org:strlst/dslab into ns-refactor | пре 3 година | |
---|---|---|
.idea | пре 3 година | |
examples | пре 3 година | |
gradle | пре 3 година | |
keys | пре 3 година | |
lib | пре 3 година | |
scripts | пре 3 година | |
src | пре 3 година | |
.gitignore | пре 3 година | |
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