bugfix native compile

This commit is contained in:
Struchkov Mark 2022-01-17 07:08:53 +03:00
parent 34f70ec94a
commit c75a8e6786

16
pom.xml
View File

@ -54,6 +54,22 @@
<groupId>io.smallrye.reactive</groupId>
<artifactId>smallrye-mutiny-vertx-pg-client</artifactId>
</dependency>
<!--Все зависимости ниже необходимы только для нативной сборки Quarkus-->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.3.1</version>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>20.1.0</version>
</dependency>
</dependencies>
<scm>