Skip to content

Commit

Permalink
Add Java 17 job, and use it for sonar, with the spring boot 3 integra…
Browse files Browse the repository at this point in the history
…tion coverage included.
  • Loading branch information
gklijs committed Jan 24, 2023
1 parent 21a96e6 commit 636d80c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -20,6 +20,9 @@ jobs:
sonar-enabled: false
deploy-enabled: true
- java-version: 11
sonar-enabled: false
deploy-enabled: false
- java-version: 17
sonar-enabled: true
deploy-enabled: false

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pullrequest.yml
Expand Up @@ -13,8 +13,10 @@ jobs:
- java-version: 8
sonar-enabled: false
- java-version: 11
sonar-enabled: false
- java-version: 17
sonar-enabled: true
fail-fast: false # run both to the end
fail-fast: false # run all to the end

steps:
- name: Checkout code
Expand Down
10 changes: 8 additions & 2 deletions coverage-report/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2010-2022. Axon Framework
~ Copyright (c) 2010-2023. Axon Framework
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -25,7 +25,7 @@
</parent>

<artifactId>axon-kafka-coverage-report</artifactId>
<version>4.6.0-SNAPSHOT</version>
<version>4.7.0-SNAPSHOT</version>

<name>Axon Framework Kafka Extension - Coverage Report Generator</name>
<description>Coverage Report Generator for the Axon Kafka Extension</description>
Expand All @@ -48,6 +48,12 @@
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.axonframework.extensions.kafka</groupId>
<artifactId>axon-spring-boot-3-integrationtests</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 636d80c

Please sign in to comment.