☕🚀 Java Basic Skeleton: Save the boilerplate in your new projects
⚡ Start your Java projects as fast as possible
This is a repository intended to serve as a starting point if you want to bootstrap a Java project with JUnit and Gradle.
- Install Java: brew install corretto or download it here
- Set it as your default JVM: export JAVA_HOME='/Library/Java/JavaVirtualMachines/amazon-corretto-$JAVA_VERSION$.jdk/Contents/Home'
- Clone this repository: git clone https://github.com/CodelyTV/java-basic-skeleton.
- Execute some Gradle lifecycle tasks in order to check everything is OK:
- Create the project JAR: make build
- Run the tests and plugins verification tasks: make test
- Start developing!
☝️ How to update dependencies