- Java Development Kit (JDK) 6, 7, 8 or 11
- Environment Variable JAVA_HOME set to JDK install directory
- Java Runtime Environment (JRE) 6, 7, 8 or 11
Dependencies for testing (JUnit, Hamcrest, Mockito) are managed by Gradle.
Navigate to OpenKit's top level directory and run the following command in your shell.
- Windows command prompt
gradlew jar
- Linux/UNIX shell
./gradlew jar
The built jar file(s) openkit-<version>.jar
will be located in the build/libs
directory.
Navigate to OpenKit's top level directory and run the following command in your shell.
- Windows command prompt
gradlew test
- Linux/UNIX shell
./gradlew test
Navigate to OpenKit's top level directory and run the following command in your shell.
- Windows command prompt
gradlew javadoc
- Linux/UNIX shell
./gradlew javadoc
The generated javadoc will be located in the build/docs/javadoc
directory.