add lombok config

pull/882/head
chanhengseang 2025-05-26 12:50:02 -07:00
parent cd4c1e6798
commit 7d12b0c9f3
2 changed files with 35 additions and 1 deletions

View File

@ -1 +0,0 @@

35
.github/workflows/maven-build.yml vendored Normal file
View File

@ -0,0 +1,35 @@
name: Maven Build
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Make Maven wrapper executable
run: chmod +x ./mvnw
- name: Build with Maven
run: ./mvnw clean package -DskipTests
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: jar-files
path: |
eladmin-system/target/*.jar
**/target/*.jar