Skip to content

Commit 4ebbe63

Browse files
committed
Merge branch 'develop'
2 parents 0ee20b6 + a0380df commit 4ebbe63

13 files changed

Lines changed: 100 additions & 203 deletions

File tree

.github/workflows/maven-build.yml

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -19,33 +19,20 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
os: [ ubuntu-latest ]
2322
java: [8, 11, 17]
23+
os: [ubuntu-latest]
24+
distribution: [temurin]
2425

2526
steps:
26-
# Check out Git repository
2727
- name: Checkout code
2828
uses: actions/checkout@v2
2929

30-
# Set up environment with Java and Maven
3130
- name: Setup JDK
32-
uses: actions/setup-java@v1
31+
uses: actions/setup-java@v2
3332
with:
33+
distribution: ${{ matrix.distribution }}
3434
java-version: ${{ matrix.java }}
35+
cache: 'maven'
3536

36-
# Set up dependency cache
37-
- name: Cache local Maven repository
38-
uses: actions/cache@v2
39-
with:
40-
path: ~/.m2/repository
41-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
42-
restore-keys: |
43-
${{ runner.os }}-maven-
44-
45-
# Build & verify
4637
- name: Build and verify
4738
run: ./mvnw -s ./.maven-settings.xml -Pcontinuous-integration -B -U clean verify
48-
49-
# Run code coverage check
50-
- name: Run code coverage check
51-
run: bash <(curl -s https://codecov.io/bash)

.github/workflows/maven-deploy.yml

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,39 +14,27 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
# Check out Git repository
1817
- name: Checkout code
1918
uses: actions/checkout@v2
2019

21-
# Configure GIT
2220
- name: Configure GIT
2321
run: |
2422
git config --global user.email "${{ secrets.GH_SITE_DEPLOY_EMAIL }}"
2523
git config --global user.name "${{ secrets.GH_SITE_DEPLOY_NAME }}"
2624
27-
# Set up environment with Java and Maven
2825
- name: Setup JDK
29-
uses: actions/setup-java@v1
26+
uses: actions/setup-java@v2
3027
with:
31-
java-version: 1.8
28+
distribution: temurin
29+
java-version: 8
30+
cache: 'maven'
3231

33-
# Set up dependency cache
34-
- name: Cache local Maven repository
35-
uses: actions/cache@v2
36-
with:
37-
path: ~/.m2/repository
38-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
39-
restore-keys: |
40-
${{ runner.os }}-maven-
41-
42-
# Build, deploy to ossrh, generate and stage site
4332
- name: Build, verify, deploy, generate site
4433
env:
4534
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
4635
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
4736
run: ./mvnw -s ./.maven-settings.xml -Pcontinuous-integration -B -U clean deploy site
4837

49-
# Deploy site to Github Pages
5038
- name: Stage and deploy site
5139
run: >
5240
./mvnw -s ./.maven-settings.xml -Pcontinuous-integration -B site:stage scm-publish:publish-scm

.mvn/wrapper/MavenWrapperDownloader.java

Lines changed: 0 additions & 117 deletions
This file was deleted.

.mvn/wrapper/maven-wrapper.jar

7.83 KB
Binary file not shown.
Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
117
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.4/apache-maven-3.8.4-bin.zip
2-
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar

mvnw

Lines changed: 12 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mvnw.cmd

Lines changed: 18 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

parent_toplevel/changes.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@
2323
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
2424
<body>
2525

26+
<release version="1.3.0" date="2022-03-15">
27+
<action type="update" dev="sseifert">
28+
Update to global-parent 43.
29+
</action>
30+
<action type="update" dev="sseifert">
31+
Set SonarCloud properties.
32+
</action>
33+
<action type="update" dev="sseifert">
34+
Remove log4j dependency, update slf4j dependency.
35+
</action>
36+
<action type="update" dev="sseifert">
37+
Set OddEvenVersionPolicy for gitflow-maven-plugin.
38+
</action>
39+
</release>
40+
2641
<release version="1.2.10" date="2021-12-18">
2742
<action type="update" dev="sseifert">
2843
Update to global-parent 40.

0 commit comments

Comments
 (0)