Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 639 Bytes

File metadata and controls

31 lines (22 loc) · 639 Bytes

Development Environment

  • File >> open >> build.gradle
  • Make sure to check the 'use the default gradle wrapper' option.
  • First time build
./gradlew cleanIdea idea
  • To get more output from any gralde commands/tasks append a -i (info) or -d (debug) e.g.
./gradlew build -i

Pre-Commit Build

  • Code quality (code coverage, checkstyle)
./gradlew check

Building the asciidoc reference documentation

 ./gradlew asciidoc --daemon //Using the gradle daemon here makes sense if this is being executed a lot

CI Enviroment