Skip to content

Commit efa9c63

Browse files
committed
upgrading to springboot 3
1 parent 7a64353 commit efa9c63

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

Diff for: .github/workflows/maven.yml

+11-7
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v2
19-
- name: Set up JDK 15
20-
uses: actions/setup-java@v1
21-
with:
22-
java-version: 15
23-
- name: Build with Maven
24-
run: mvn -B package --file pom.xml
18+
- uses: actions/checkout@v2
19+
20+
- name: Set up JDK
21+
uses: actions/setup-java@v2
22+
with:
23+
java-version: 19
24+
cache: 'maven'
25+
distribution: 'temurin'
26+
27+
- name: Build with Maven
28+
run: mvn -B compile --file pom.xml

Diff for: .mvn/wrapper/maven-wrapper.jar

1.17 KB
Binary file not shown.

Diff for: .mvn/wrapper/maven-wrapper.properties

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# to you under the Apache License, Version 2.0 (the
66
# "License"); you may not use this file except in compliance
77
# with the License. You may obtain a copy of the License at
8-
#
9-
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
8+
#
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
1111
# Unless required by applicable law or agreed to in writing,
1212
# software distributed under the License is distributed on an
1313
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.4/apache-maven-3.8.4-bin.zip
18-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<properties>
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22-
<java.version>15</java.version>
22+
<java.version>19</java.version>
2323
</properties>
2424

2525
<dependencies>

0 commit comments

Comments
 (0)