使用 flatten-maven-plugin 优化项目

This commit is contained in:
卢春梦 2024-03-09 16:20:29 +08:00
parent 84f5f218b7
commit 5159d93296
3 changed files with 46 additions and 0 deletions

13
.github/ISSUE_TEMPLATE vendored Normal file
View File

@ -0,0 +1,13 @@
**注意github 上的少,可能响应不够及时,建议 gitee 上发起**
Please answer some questions before submitting your issue. Thanks!
### Which version do you using使用的哪个版本?
### Expected behavior预期的效果
### Actual behavior实际的效果
### Steps to reproduce the behavior重现步骤
### Other information其他信息

16
.github/PULL_REQUEST_TEMPLATE vendored Normal file
View File

@ -0,0 +1,16 @@
**注意github 上的少,可能响应不够及时,建议 gitee 上发起**
**What kind of change does this PR introduce?** (check at least one)
- [ ] Bugfixbug修复
- [ ] Feature新功能
- [ ] Code style update代码格式调整
- [ ] Refactor重构
- [ ] Build-related changes与构建相关的更改
- [ ] Other, please describe其他请说明:
**The description of the PRPR描述:**
**Other information其他信息:**

17
.github/workflows/test-and-build.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Java CI
on: [push, pull_request]
jobs:
buildOnJava8:
name: build on java8
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
distribution: 'zulu'
cache: 'maven'
java-version: 8
- name: Build with Maven
run: mvn package