|
8 | 8 | <packaging>pom</packaging> |
9 | 9 |
|
10 | 10 | <properties> |
11 | | - <compiler-plugin.version>3.14.0</compiler-plugin.version> |
12 | | - <maven.compiler.release>21</maven.compiler.release> |
| 11 | + <compiler-plugin.version>3.15.0</compiler-plugin.version> |
| 12 | + <maven.compiler.release>25</maven.compiler.release> |
13 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 | 14 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
15 | 15 | <quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id> |
16 | 16 | <quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id> |
17 | | - <quarkus.platform.version>3.21.2</quarkus.platform.version> |
| 17 | + <quarkus.platform.version>3.32.2</quarkus.platform.version> |
18 | 18 | <skipITs>true</skipITs> |
19 | | - <surefire-plugin.version>3.5.2</surefire-plugin.version> |
| 19 | + <surefire-plugin.version>3.5.4</surefire-plugin.version> |
20 | 20 | <!-- Check https://github.com/netty/netty-incubator-transport-io_uring/tags --> |
21 | 21 | <netty.io_uring.version>0.0.26.Final</netty.io_uring.version> |
22 | 22 | <rocker.version>1.3.0</rocker.version> |
|
61 | 61 | </dependencyManagement> |
62 | 62 |
|
63 | 63 | <build> |
| 64 | + <!--Required during the upgrade to Quarkus 3.32.2--> |
| 65 | + <!--Otherwise, the container image build fails with:--> |
| 66 | + <!--Could not find artifact io.netty:netty-transport-native-unix-common:jar:${os.detected.name}-${os.detected.arch}:4.1.130.Final in central--> |
| 67 | + <extensions> |
| 68 | + <extension> |
| 69 | + <groupId>kr.motd.maven</groupId> |
| 70 | + <artifactId>os-maven-plugin</artifactId> |
| 71 | + <version>1.7.1</version> |
| 72 | + </extension> |
| 73 | + </extensions> |
64 | 74 | <plugins> |
65 | 75 | <plugin> |
66 | 76 | <groupId>${quarkus.platform.group-id}</groupId> |
|
81 | 91 | <artifactId>maven-compiler-plugin</artifactId> |
82 | 92 | <version>${compiler-plugin.version}</version> |
83 | 93 | <configuration> |
84 | | - <compilerArgs> |
85 | | - <arg>-parameters</arg> |
86 | | - </compilerArgs> |
| 94 | + <parameters>true</parameters> |
87 | 95 | </configuration> |
88 | 96 | </plugin> |
89 | 97 | <plugin> |
|
0 commit comments