Bump versions.
This commit is contained in:
parent
c44b5fb17e
commit
0adbe47739
4 changed files with 20 additions and 60 deletions
34
.github/workflows/ci.yml
vendored
34
.github/workflows/ci.yml
vendored
|
@ -1,34 +0,0 @@
|
|||
name: PullRequest
|
||||
|
||||
"on": [pull_request]
|
||||
|
||||
jobs:
|
||||
|
||||
lint-yaml:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ibiqlik/action-yamllint@v3
|
||||
with:
|
||||
format: colored
|
||||
strict: true
|
||||
|
||||
lint-markdown:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: docker://avtodev/markdown-lint:v1
|
||||
with:
|
||||
args: /github/workspace
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-java@v2
|
||||
with:
|
||||
distribution: temurin
|
||||
java-version: 11
|
||||
cache: maven
|
||||
- run: mvn -B dependency:go-offline -q
|
||||
- run: mvn -B verify
|
21
.github/workflows/release.yml
vendored
21
.github/workflows/release.yml
vendored
|
@ -4,29 +4,8 @@ name: Release
|
|||
workflow_dispatch: {}
|
||||
|
||||
jobs:
|
||||
|
||||
lint-yaml:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ibiqlik/action-yamllint@v3
|
||||
with:
|
||||
format: colored
|
||||
strict: true
|
||||
|
||||
lint-markdown:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: docker://avtodev/markdown-lint:v1
|
||||
with:
|
||||
args: /github/workspace
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- lint-markdown
|
||||
- lint-yaml
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
|
|
17
.github/workflows/snapshot.yml
vendored
17
.github/workflows/snapshot.yml
vendored
|
@ -2,10 +2,7 @@ name: Snapshot
|
|||
|
||||
"on":
|
||||
workflow_dispatch: {}
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- '*.x'
|
||||
push: {}
|
||||
|
||||
jobs:
|
||||
|
||||
|
@ -42,7 +39,19 @@ jobs:
|
|||
server-username: SERVER_USERNAME
|
||||
server-password: SERVER_PASSWORD
|
||||
- run: mvn -B dependency:go-offline -q
|
||||
- run: mvn -B verify
|
||||
if: github.ref != 'refs/heads/main' && github.ref != 'refs/heads/3.x'
|
||||
- run: mvn -B deploy -Poss
|
||||
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/3.x'
|
||||
env:
|
||||
SERVER_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
|
||||
SERVER_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
|
||||
- uses: dorny/test-reporter@v1
|
||||
if: failure()
|
||||
with:
|
||||
name: surefire
|
||||
path: '*/target/surefire-reports/*.xml'
|
||||
reporter: java-junit
|
||||
list-suites: failed
|
||||
list-tests: failed
|
||||
fail-on-error: false
|
||||
|
|
8
pom.xml
8
pom.xml
|
@ -48,8 +48,9 @@
|
|||
<!-- ============================= Libaries ============================== -->
|
||||
<!-- ===================================================================== -->
|
||||
|
||||
<version.ch.qos.logback>1.2.7</version.ch.qos.logback>
|
||||
<version.ch.qos.logback.contrib>0.1.5</version.ch.qos.logback.contrib>
|
||||
<version.io.micronaut>3.2.0</version.io.micronaut>
|
||||
<version.io.micronaut>3.2.1</version.io.micronaut>
|
||||
|
||||
</properties>
|
||||
|
||||
|
@ -66,6 +67,11 @@
|
|||
</dependency>
|
||||
|
||||
<!-- logback -->
|
||||
<dependency>
|
||||
<groupId>ch.qos.logback</groupId>
|
||||
<artifactId>logback-classic</artifactId>
|
||||
<version>${version.ch.qos.logback}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>ch.qos.logback.contrib</groupId>
|
||||
<artifactId>logback-json-classic</artifactId>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue