Skip to content

Commit

Permalink
Merge pull request #1404 from smallrye/ci/temurin21
Browse files Browse the repository at this point in the history
build(ci): build pull requests against Temurin 21
  • Loading branch information
jponge authored Oct 13, 2023
2 parents 7c79c9b + f014340 commit 7475806
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
java: [
{ 'version': '11', opts: '' },
{ 'version': '17', 'opts': '' },
{ 'version': '20', 'opts': '' }
{ 'version': '21', 'opts': '' }
]
name: Build with Java ${{ matrix.java.version }}
steps:
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@
<version.surefire.plugin>3.1.2</version.surefire.plugin>
<testng.version>7.8.0</testng.version>
<testng-junit5-engine.version>1.0.4</testng-junit5-engine.version>

<mockito-core.version>5.5.0</mockito-core.version>
<byte-buddy.version>1.14.9</byte-buddy.version>

<revapi-maven-plugin.version>0.15.0</revapi-maven-plugin.version>
<revapi-java.version>0.28.1</revapi-java.version>
Expand Down Expand Up @@ -173,6 +175,11 @@
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${byte-buddy.version}</version>
</dependency>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-context-propagation</artifactId>
Expand Down

0 comments on commit 7475806

Please sign in to comment.