Skip to content

add security infrastructure #317

add security infrastructure

add security infrastructure #317

Workflow file for this run

name: Build
on:
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "21"
- name: Get current version
id: version
run: echo "::set-output name=prop::$(mvn -f pom.xml help:evaluate -Dexpression=project.version -q -DforceStdout)"
- run: echo ${{steps.version.outputs.prop}}
- name: Build with Maven
run: mvn install --file pom.xml --batch-mode --no-transfer-progress
- name: Upload jar
uses: actions/upload-artifact@v4
with:
name: app-jar
path: target/