mirror of
https://github.com/jlengrand/quarkus.git
synced 2026-03-10 08:41:22 +00:00
123 lines
4.6 KiB
XML
123 lines
4.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>quarkus-infinispan-client-parent</artifactId>
|
|
<groupId>io.quarkus</groupId>
|
|
<version>999-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>quarkus-infinispan-client</artifactId>
|
|
<name>Quarkus - Infinispan - Client - Runtime</name>
|
|
<description>Connect to the Infinispan data grid for distributed caching</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.quarkus</groupId>
|
|
<artifactId>quarkus-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.quarkus</groupId>
|
|
<artifactId>quarkus-arc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.quarkus</groupId>
|
|
<artifactId>quarkus-caffeine</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.quarkus</groupId>
|
|
<artifactId>quarkus-netty</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.quarkus</groupId>
|
|
<artifactId>quarkus-jsonp</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.quarkus</groupId>
|
|
<artifactId>quarkus-elytron-security-common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.wildfly.security</groupId>
|
|
<artifactId>wildfly-elytron-sasl-plain</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.wildfly.security</groupId>
|
|
<artifactId>wildfly-elytron-sasl-digest</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.wildfly.security</groupId>
|
|
<artifactId>wildfly-elytron-sasl-external</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.wildfly.security</groupId>
|
|
<artifactId>wildfly-elytron-sasl-oauth2</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.wildfly.security</groupId>
|
|
<artifactId>wildfly-elytron-sasl-scram</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.infinispan</groupId>
|
|
<artifactId>infinispan-client-hotrod</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.infinispan</groupId>
|
|
<artifactId>infinispan-jboss-marshalling</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.jboss.spec.javax.transaction</groupId>
|
|
<artifactId>
|
|
jboss-transaction-api_1.2_spec
|
|
</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.transaction</groupId>
|
|
<artifactId>jakarta.transaction-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.infinispan</groupId>
|
|
<artifactId>infinispan-remote-query-client</artifactId>
|
|
</dependency>
|
|
<!-- This dependency is required as otherwise the RemoteCacheImpl substitution fails-->
|
|
<dependency>
|
|
<groupId>org.infinispan</groupId>
|
|
<artifactId>infinispan-query-dsl</artifactId>
|
|
</dependency>
|
|
<!-- Will allow projects to run annotation processor -->
|
|
<dependency>
|
|
<groupId>org.infinispan.protostream</groupId>
|
|
<artifactId>protostream-processor</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.graalvm.nativeimage</groupId>
|
|
<artifactId>svm</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>io.quarkus</groupId>
|
|
<artifactId>quarkus-bootstrap-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>io.quarkus</groupId>
|
|
<artifactId>quarkus-extension-processor</artifactId>
|
|
<version>${project.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|