☕🚀 Java Basic Skeleton

ℹ️ Introduction

This is a repository intended to serve as a starting point if you want to bootstrap a Java project with JUnit and Gradle.

🏁 How To Start

  1. Install Java 11: brew install corretto or download it here
  2. Set it as your default JVM:
    export JAVA_HOME=/usr/lib/jvm/java-1.11.0-openjdk-amd64
    export PATH=$PATH:$JAVA_HOME/bin
    
  3. Clone this repository: git clone https://github.com/Sikay/java-basic-skeleton.
  4. Start container: make docker-up
  5. Run the tests and plugins verification tasks: make docker-test
  6. Check mysql container: make ping-mysql
  7. Start developing!
  8. When you finish, to stop containers: make docker-down

☝️ How to update dependencies

😃 Thanks to

This is a modified template from the codelyTV template.

CodelyTV Workflow Status