Skip to content

Commit

Permalink
ci: sonar uses Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa committed Jan 16, 2024
1 parent b9a7a71 commit 8463ee6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
with:
# Shallow clones should be disabled for a better relevancy of analysis
fetch-depth: 0
- name: Setup Java 11 # Move Sonar analysis to Java 11
- name: Setup Java 17
uses: actions/setup-java@v4
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
- name: Maven Sonar
run: ./mvnw ${MAVEN_ARGS} clean install sonar:sonar -Psonar
7 changes: 7 additions & 0 deletions httpclient-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,13 @@
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<!-- Required by SslTest -->
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 8463ee6

Please sign in to comment.