Skip to content

filtering为true,拷贝文件时会用对文件中的占位符进行替换处理,此处无此需求,改成false更合理。maven3.9.+编译时会… #25

filtering为true,拷贝文件时会用对文件中的占位符进行替换处理,此处无此需求,改成false更合理。maven3.9.+编译时会…

filtering为true,拷贝文件时会用对文件中的占位符进行替换处理,此处无此需求,改成false更合理。maven3.9.+编译时会… #25

Workflow file for this run

# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
name: Maven Build CI
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: false
default: 'warning'
type: choice
options:
- info
- warning
- debug
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn clean package -DskipTests