Skip to content

Commit 9fae366

Browse files
Upgrade to Spring Boot 3.3.5.
1 parent 211ebbd commit 9fae366

File tree

3 files changed

+5
-31
lines changed

3 files changed

+5
-31
lines changed

.github/workflows/maven.yml

-23
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,3 @@ jobs:
2020
java-version: 17
2121
- name: Build with Maven
2222
run: ./mvnw --no-transfer-progress clean verify
23-
24-
sonar:
25-
name: sonar analyse
26-
runs-on: ubuntu-latest
27-
needs: build
28-
steps:
29-
- run: sudo apt-get install -y gpsbabel
30-
- uses: actions/checkout@v1
31-
- uses: actions/setup-java@v1
32-
with:
33-
java-version: 17
34-
- name: Run SonarCloud analyse
35-
run: >
36-
./mvnw --batch-mode --no-transfer-progress clean
37-
org.jacoco:jacoco-maven-plugin:prepare-agent verify
38-
org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
39-
-Dsonar.host.url=https://sonarcloud.io
40-
-Dsonar.organization=michael-simons-github
41-
-Dsonar.projectKey=eu.michael-simons:biking2
42-
-Dsonar.branch.name=${GITHUB_REF##*/}
43-
env:
44-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# biking2
22

3-
[![Build Status](https://github.com/michael-simons/biking2/workflows/build/badge.svg)](https://github.com/michael-simons/biking2/actions) [![Test coverage](https://sonarcloud.io/api/project_badges/measure?project=eu.michael-simons%3Abiking2&metric=coverage)](https://sonarcloud.io/dashboard?id=eu.michael-simons%3Abiking2) [![Quality Gate](https://sonarcloud.io/api/project_badges/measure?project=eu.michael-simons%3Abiking2&metric=alert_status)](https://sonarcloud.io/dashboard?id=eu.michael-simons%3Abiking2)
4-
5-
*NOTE:* The successor to this project is [biking3][9], which is what my [instance][1] is running these days.
3+
*NOTE:* The successor to this project is [biking3][9], which is what my [instance][1] is running these days. I might update dependencies here some time, but I am not doing any further development in here.
64

75
## Abstract
86

@@ -26,7 +24,7 @@ Per default, biking2 looks at `/opt/local/bin/gpsbabel` for the GPSBabel binary.
2624

2725
GPSBabel is available for all major operating systems, including windows. So please check if it's available on your platform if biking2 doesn't compile for you.
2826

29-
Also you should use the provided `mvnw` respectively `mvnw.cmd` script for building.
27+
Also, you should use the provided `mvnw` respectively `mvnw.cmd` script for building.
3028
If not, you need to export the following Java opts:
3129

3230
--add-opens java.base/sun.nio.ch=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-exports java.base/sun.nio.ch=ALL-UNNAMED

pom.xml

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.2.0</version>
8+
<version>3.3.5</version>
99
<relativePath />
1010
</parent>
1111

1212
<groupId>eu.michael-simons</groupId>
1313
<artifactId>biking2</artifactId>
14-
<version>3.4.10-SNAPSHOT</version>
14+
<version>3.5.2-SNAPSHOT</version>
1515

1616
<name>biking2</name>
1717
<url>https://biking.michael-simons.eu</url>
@@ -45,7 +45,6 @@
4545
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
4646
<build-date>${maven.build.timestamp}</build-date>
4747

48-
<activemq.version>6.0.0</activemq.version>
4948
<asciidoctor-maven-plugin.version>2.1.0</asciidoctor-maven-plugin.version>
5049
<bootstrap.version>3.1.1</bootstrap.version>
5150
<checkstyle.version>8.42</checkstyle.version>
@@ -66,7 +65,7 @@
6665
<momentjs.version>2.10.6</momentjs.version>
6766
<sockjs-client.version>1.0.2</sockjs-client.version>
6867
<stomp-websocket.version>2.3.3</stomp-websocket.version>
69-
<wro4j-spring-boot-starter.version>0.12.2</wro4j-spring-boot-starter.version>
68+
<wro4j-spring-boot-starter.version>0.15.1</wro4j-spring-boot-starter.version>
7069

7170
<start-class>ac.simons.biking2.Application</start-class>
7271

0 commit comments

Comments
 (0)