Skip to content

Latest commit

 

History

History
60 lines (42 loc) · 1.61 KB

step-1-getting-started.md

File metadata and controls

60 lines (42 loc) · 1.61 KB

Step 1: Getting Started

Before getting started, let's make sure you have everything you need for running this demo.

Prerequisites

Install Java 17 or newer

You'll need Java 17 or newer for this workshop. Testcontainers libraries are compatible with Java 8+, but this workshop uses a Quarkus 3.x application which requires Java 17 or newer.

We would recommend using SDKMAN to install Java on your machine if you are using MacOS, Linux or Windows WSL.

Install a container runtime

You need to have a Docker or Podman environment to use Testcontainers.

$ docker version

Client:
 Cloud integration: v1.0.35+desktop.10
 Version:           25.0.3
 API version:       1.44
 Go version:        go1.21.6
 Git commit:        4debf41
 Built:             Tue Feb  6 21:13:26 2024
 OS/Arch:           darwin/arm64
 Context:           desktop-linux

Server: Docker Desktop 4.27.2 (137060)
 Engine:
  Version:          25.0.3
  API version:      1.44 (minimum version 1.24)
  Go version:       go1.21.6
  Git commit:       f417435e5f6216828dec57958c490c4f8bae4f98
  Built:            Wed Feb  7 00:39:16 2024
  OS/Arch:          linux/arm64
  Experimental:     false

Download the project

Clone the microcks-quarkus-demo repository from GitHub to your computer:

git clone https://github.com/microcks/microcks-quarkus-demo.git

Compile the project to download the dependencies

With Maven:

./mvnw clean package -DskipTests

Next