Skip to content

Update pom.xml

Update pom.xml #12

Workflow file for this run

name: Build
on: [ push,pull_request ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: lightning-prod
path: target/Lightning.jar