You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.3 KiB
XML
73 lines
2.3 KiB
XML
4 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>org.redisson</groupId>
|
||
|
<artifactId>redisson-quarkus-20-parent</artifactId>
|
||
|
<version>3.15.7-SNAPSHOT</version>
|
||
|
<relativePath>../</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>redisson-quarkus-20</artifactId>
|
||
|
|
||
|
<name>Redisson/Quarkus v2.0.x runtime</name>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>io.quarkus</groupId>
|
||
|
<artifactId>quarkus-arc</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.redisson</groupId>
|
||
|
<artifactId>redisson</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>jakarta.enterprise</groupId>
|
||
|
<artifactId>jakarta.enterprise.cdi-api</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.graalvm.nativeimage</groupId>
|
||
|
<artifactId>svm</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>io.quarkus</groupId>
|
||
|
<artifactId>quarkus-bootstrap-maven-plugin</artifactId>
|
||
|
<version>${quarkus.version}</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>compile</phase>
|
||
|
<goals>
|
||
|
<goal>extension-descriptor</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<annotationProcessorPaths>
|
||
|
<path>
|
||
|
<groupId>io.quarkus</groupId>
|
||
|
<artifactId>quarkus-extension-processor</artifactId>
|
||
|
<version>${quarkus.version}</version>
|
||
|
</path>
|
||
|
</annotationProcessorPaths>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|