Skip to content

Commit fcd5345

Browse files
committed
Merge branch 'update-from-template'
2 parents 82c5848 + 6138d09 commit fcd5345

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/sonar.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,12 @@ jobs:
5353
restore-keys: ${{ runner.os }}-m2
5454

5555
- name: Build with Maven
56-
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=${{ env.SONARCLOUD_ORG }}_${{ github.event.repository.name }} -Dsonar.organization=${{ env.SONARCLOUD_ORG }} -Dsonar.host.url=${{ env.SONARCLOUD_HOST }}
56+
run: |
57+
mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar \
58+
-DskipTests \
59+
-Dsonar.projectKey=${{ env.SONARCLOUD_ORG }}_${{ github.event.repository.name }} \
60+
-Dsonar.organization=${{ env.SONARCLOUD_ORG }} \
61+
-Dsonar.host.url=${{ env.SONARCLOUD_HOST }}
5762
env:
5863
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
5964
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

vaadin-addon-template-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
<dependency>
192192
<groupId>com.puppycrawl.tools</groupId>
193193
<artifactId>checkstyle</artifactId>
194-
<version>10.12.7</version>
194+
<version>10.13.0</version>
195195
</dependency>
196196
</dependencies>
197197
<configuration>

vaadin-addon-template/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@
284284
<dependency>
285285
<groupId>com.puppycrawl.tools</groupId>
286286
<artifactId>checkstyle</artifactId>
287-
<version>10.12.7</version>
287+
<version>10.13.0</version>
288288
</dependency>
289289
</dependencies>
290290
<configuration>

0 commit comments

Comments
 (0)