File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ updates:
1010 schedule :
1111 interval : " weekly"
1212 ignore :
13- # Ignore all versions : cf pom.xml comments
14- - dependency-name : " org.sonarsource.java:sonar-java-plugin"
1513 # Ignore all versions : cf pom.xml comments
1614 - dependency-name : " com.mycila:license-maven-plugin"
1715 - dependency-name : " org.springframework.data:spring-data-commons"
Original file line number Diff line number Diff line change 2929 with :
3030 distribution : " temurin"
3131 java-version : 17
32- cache : maven
32+ cache : maven # enable maven cache shared by all github actions build
3333
3434 # to be able to use "sonar:sonar" instead of "org.sonarsource.scanner.maven:sonar-maven-plugin:sonar"
3535 # inside this build but also when the test project analysis is launched with sonar:sonar
@@ -38,16 +38,17 @@ jobs:
3838 mkdir -p ~/.m2
3939 echo "<settings><pluginGroups><pluginGroup>org.sonarsource.scanner.maven</pluginGroup></pluginGroups></settings>" > ~/.m2/settings.xml
4040
41- - name : Verify
42- run : ./mvnw -e -B verify
43-
41+ # enable sonarqube downloads cache shared by all github actions build
4442 - name : Cache SonarQube packages
4543 uses : actions/cache@v4
4644 with :
4745 path : ~/.sonar/cache
4846 key : ${{ runner.os }}-sonar
4947 restore-keys : ${{ runner.os }}-sonar
5048
49+ - name : Verify
50+ run : ./mvnw -e -B verify
51+
5152 - name : SonarQube Scan
5253 if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
5354 env :
Original file line number Diff line number Diff line change 195195 </dependencies >
196196
197197 <build >
198- <pluginManagement >
198+ <!-- < pluginManagement>
199199 <plugins>
200200 <plugin>
201201 <groupId>org.sonarsource.scanner.maven</groupId>
202202 <artifactId>sonar-maven-plugin</artifactId>
203203 <version>3.11.0.3922</version>
204204 </plugin>
205205 </plugins>
206- </pluginManagement >
206+ </pluginManagement> -->
207207 <plugins >
208208 <plugin >
209209 <groupId >org.apache.maven.plugins</groupId >
213213 <plugin >
214214 <groupId >org.apache.maven.plugins</groupId >
215215 <artifactId >maven-surefire-plugin</artifactId >
216- <version >3.5.3 </version >
216+ <version >3.5.4 </version >
217217 </plugin >
218218 <plugin >
219219 <groupId >org.jacoco</groupId >
277277 <!-- shade plugin configuration is on parent pom.xml because of use for other modules -->
278278 <groupId >org.apache.maven.plugins</groupId >
279279 <artifactId >maven-shade-plugin</artifactId >
280- <version >3.6.0 </version >
280+ <version >3.6.1 </version >
281281 <executions >
282282 <execution >
283283 <phase >package</phase >
459459 <!-- Execute integration tests -->
460460 <groupId >org.apache.maven.plugins</groupId >
461461 <artifactId >maven-failsafe-plugin</artifactId >
462- <version >3.5.3 </version >
462+ <version >3.5.4 </version >
463463 <executions >
464464 <execution >
465465 <goals >
You can’t perform that action at this time.
0 commit comments