Using a local Gradle installation will be necessary to be able to run ./gradlew
commands while avoiding the Error: Could not find or load main class org.gradle.wrapper.GradleWrapperMain
error.
Run sh configure.sh
in the project's root directory.
Run ./configure.sh
in the project's root directory, using Windows 10's git bash. You could also run bash configure.sh
under WSL.
Run $ ./gradlew build
- find jar artifacts at
build/libs
- find unit test and code coverage reports at
build/reports
- execute the
-all
jar inbuild/libs
using$ java -jar [jarfile]
.
Use IDEA 14 or better and import project based on Gradle sources.
Note that in order to build the project without errors in IDEA, you will need to run gradle antlr4
manually.
Run ./gradlew install
.
Simply push to master, and the Jenkins build will take care of the rest.