2024-01-03 04:12:56 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-04-18 03:24:25 -04:00
|
|
|
<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/maven-v4_0_0.xsd">
|
2024-01-03 04:12:56 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2019-04-18 03:24:25 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>infinispan-parent</artifactId>
|
2023-12-15 15:49:33 -05:00
|
|
|
<version>10.0.20-SNAPSHOT</version>
|
2019-04-18 03:24:25 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>infinispan-common</artifactId>
|
|
|
|
<name>Jetty :: Infinispan Session Manager Common</name>
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.infinispan.common</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2024-01-03 04:12:56 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
</dependency>
|
2019-04-18 03:24:25 -04:00
|
|
|
<dependency>
|
2019-06-24 11:42:39 -04:00
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-core</artifactId>
|
|
|
|
<optional>true</optional>
|
2021-09-20 21:16:50 -04:00
|
|
|
<exclusions>
|
2022-06-02 04:24:28 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.wildfly.common</groupId>
|
|
|
|
<artifactId>wildfly-common</artifactId>
|
|
|
|
</exclusion>
|
2021-09-20 21:16:50 -04:00
|
|
|
</exclusions>
|
2019-04-18 03:24:25 -04:00
|
|
|
</dependency>
|
2020-03-19 18:46:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2019-04-18 03:24:25 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-client-hotrod</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-remote-query-client</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan.protostream</groupId>
|
|
|
|
<artifactId>protostream</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-04-18 03:24:25 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|