Skip to content

Commit cdb6cba

Browse files
authored
Merge pull request #146 from InseeFr/2.1.7-rc
fix: Update Spring Boot and project version in pom.xml
2 parents 509f03c + 87c4b0e commit cdb6cba

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/quality.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
env:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
4141
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
42-
run: mvn -B clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Pcoverage
42+
run: mvn -B clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar

pom.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.5.6</version>
9+
<version>3.5.10</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>fr.insee.rmes</groupId>
1313
<artifactId>ddi-access-services</artifactId>
14-
<version>2.1.6</version>
14+
<version>2.1.7</version>
1515
<name>DDI Access Services</name>
1616
<description>Rest API to access to Colectica repository services</description>
1717
<properties>
@@ -28,6 +28,13 @@
2828
<sonar.projectKey>InseeFr_DDI-Access-Services</sonar.projectKey>
2929
</properties>
3030
<dependencies>
31+
<!-- A supprimer après une mise à jour de spring boot > 3.5.10 -->
32+
<dependency>
33+
<groupId>org.assertj</groupId>
34+
<artifactId>assertj-core</artifactId>
35+
<version>3.27.7</version>
36+
</dependency>
37+
<!-- Fin des dépendances à supprimer pour la maj -->
3138

3239
<!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
3340
<dependency>

0 commit comments

Comments
 (0)