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: {}
|
workflow_dispatch: {}
|
||||||
|
|
||||||
jobs:
|
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:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs:
|
|
||||||
- lint-markdown
|
|
||||||
- lint-yaml
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
|
|
17
.github/workflows/snapshot.yml
vendored
17
.github/workflows/snapshot.yml
vendored
|
@ -2,10 +2,7 @@ name: Snapshot
|
||||||
|
|
||||||
"on":
|
"on":
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
push:
|
push: {}
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- '*.x'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
@ -42,7 +39,19 @@ jobs:
|
||||||
server-username: SERVER_USERNAME
|
server-username: SERVER_USERNAME
|
||||||
server-password: SERVER_PASSWORD
|
server-password: SERVER_PASSWORD
|
||||||
- run: mvn -B dependency:go-offline -q
|
- 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
|
- run: mvn -B deploy -Poss
|
||||||
|
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/3.x'
|
||||||
env:
|
env:
|
||||||
SERVER_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
|
SERVER_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
|
||||||
SERVER_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
|
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 ============================== -->
|
<!-- ============================= 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.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>
|
</properties>
|
||||||
|
|
||||||
|
@ -66,6 +67,11 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- logback -->
|
<!-- logback -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>ch.qos.logback</groupId>
|
||||||
|
<artifactId>logback-classic</artifactId>
|
||||||
|
<version>${version.ch.qos.logback}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>ch.qos.logback.contrib</groupId>
|
<groupId>ch.qos.logback.contrib</groupId>
|
||||||
<artifactId>logback-json-classic</artifactId>
|
<artifactId>logback-json-classic</artifactId>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue