Skip to content

Commit

Permalink
upgrade Quarkus to the minimum supported version
Browse files Browse the repository at this point in the history
Branch 2.0 of the add-on supports Quarkus 3.2 and 3.8.
  • Loading branch information
mcollovati committed Sep 12, 2024
1 parent a8d3185 commit 797c11c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
14 changes: 14 additions & 0 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,20 @@
<version>31.0.1-jre</version>
<scope>test</scope>
</dependency>

<!-- Pin JNA version to prevent clashes between Vaadin License Checker and Quarkus BOM -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.14.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>5.14.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<maven.compiler.parameters>true</maven.compiler.parameters>

<vaadin.flow.version>24.4-SNAPSHOT</vaadin.flow.version>
<quarkus.version>3.0.1.Final</quarkus.version>
<quarkus.version>3.2.12.Final</quarkus.version>
<open.telemetry.alpha.version>1.16.0-alpha</open.telemetry.alpha.version>
<open.telemetry.version>1.16.0</open.telemetry.version>

Expand Down Expand Up @@ -102,16 +102,16 @@
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus.version}</version>
<groupId>com.vaadin</groupId>
<artifactId>flow-bom</artifactId>
<version>${vaadin.flow.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>flow-bom</artifactId>
<version>${vaadin.flow.version}</version>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down

0 comments on commit 797c11c

Please sign in to comment.