diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 1e27ff3..e95d270 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -30,6 +30,10 @@ jobs: - name: Build with Maven run: mvn -B install --file pom.xml + - name: Build with Native + run: | + ./mvnw -e -B install --file pom.xml -Dnative -Dquarkus.native.container-build=true + # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive # - name: Update dependency graph # uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 diff --git a/pom.xml b/pom.xml index 9746f11..56ef0ae 100644 --- a/pom.xml +++ b/pom.xml @@ -65,6 +65,10 @@ io.quarkus quarkus-openshift + + io.quarkus + quarkus-smallrye-health +