2024-01-03 04:12:56 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2011-08-15 15:18:42 -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>
|
2011-07-26 16:00:29 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2024-05-13 22:45:50 -04:00
|
|
|
<version>10.0.22-SNAPSHOT</version>
|
2011-07-26 16:00:29 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>jetty-nosql</artifactId>
|
|
|
|
<name>Jetty :: NoSQL Session Managers</name>
|
|
|
|
<properties>
|
2011-08-17 04:11:37 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.nosql</bundle-symbolic-name>
|
|
|
|
</properties>
|
2011-07-26 16:00:29 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<optional>true</optional>
|
2011-07-26 16:00:29 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-server</artifactId>
|
2011-07-26 16:00:29 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
|
<artifactId>mongo-java-driver</artifactId>
|
2021-09-20 07:15:50 -04:00
|
|
|
<version>${mongodb.version}</version>
|
2011-07-26 16:00:29 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-03-19 18:46:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2011-07-26 16:00:29 -04:00
|
|
|
</dependencies>
|
2024-01-03 04:12:56 -05:00
|
|
|
<build>
|
|
|
|
<defaultGoal>install</defaultGoal>
|
|
|
|
<plugins></plugins>
|
|
|
|
</build>
|
2011-07-26 16:00:29 -04:00
|
|
|
</project>
|