- A simple Kotlin project that's set up with gradle as the build tool
- Testing using JUnit 5
A Java 8+ JDK and gradle.
- When running commands - ensure that this folder (
kotlin/
) is your working directory - When coding in IDE - open this folder (
kotlin/
) in the IDE not the parent folder, otherwise tools likeIntelliJ
may not be able to give code hints or run formatters
./gradlew compile
- compile the project../gradlew compileKotlin
./gradlew test
- runs JUnit tests.