Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
a-d committed Nov 14, 2024
1 parent 248c60d commit 9a483da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependency-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: "Build SDK"
run: |
MVN_ARGS="${{ env.MVN_MULTI_THREADED_ARGS }} clean install -DskipTests -DskipFormatting"
MVN_ARGS="${{ env.MVN_MULTI_THREADED_ARGS }} clean install -DskipTests -DskipFormatting -Dspotless.skip=true"
mvn $MVN_ARGS
test-dependency-versions:
Expand Down
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,15 @@
<wiremock.version>3.9.2</wiremock.version>
<assertj-core.version>3.26.3</assertj-core.version>
<slf4j.version>2.0.16</slf4j.version>
<spotless.version>2.43.0</spotless.version>
<checkstyle.version>10.20.1</checkstyle.version>
<system-stubs.version>2.1.3</system-stubs.version>
<surefire.version>3.5.2</surefire.version>
<springframework.version>6.1.14</springframework.version>
<dotenv-java.version>3.0.2</dotenv-java.version>
<mockito.version>5.14.2</mockito.version>
<!-- Formatting -->
<spotless.version>2.43.0</spotless.version>
<spotless.skip>false</spotless.skip>
<!-- Quality assurance -->
<enforcer.skip>false</enforcer.skip>
<enforcer.skipBanLoggingFrameworks>false</enforcer.skipBanLoggingFrameworks>
Expand Down Expand Up @@ -396,6 +398,7 @@
<artifactId>spotless-maven-plugin</artifactId>
<version>${spotless.version}</version>
<configuration>
<skip>${spotless.skip}</skip>
<java>
<!-- https://github.com/diffplug/spotless/tree/main/plugin-maven#java -->
<removeUnusedImports/>
Expand Down

0 comments on commit 9a483da

Please sign in to comment.