2021-10-15 16:10:32 -05: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/xsd/maven-4.0.0.xsd">
|
2020-02-20 15:37:40 -06:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-03-04 13:11:52 -06:00
|
|
|
<artifactId>docsys</artifactId>
|
2020-02-20 15:37:40 -06:00
|
|
|
<packaging>jar</packaging>
|
2020-03-04 13:11:52 -06:00
|
|
|
<name>docsys</name>
|
|
|
|
<url>http://nosqlbench.io/</url>
|
2021-06-25 19:26:42 -05:00
|
|
|
<properties>
|
|
|
|
<jersey.version>3.0.2</jersey.version>
|
|
|
|
</properties>
|
2020-02-20 15:37:40 -06:00
|
|
|
|
|
|
|
<parent>
|
2020-02-24 10:20:00 -06:00
|
|
|
<artifactId>mvn-defaults</artifactId>
|
2020-02-20 15:37:40 -06:00
|
|
|
<groupId>io.nosqlbench</groupId>
|
2022-03-09 22:05:16 -06:00
|
|
|
<version>4.17.12-SNAPSHOT</version>
|
2020-02-24 10:20:00 -06:00
|
|
|
<relativePath>../mvn-defaults</relativePath>
|
2020-02-20 15:37:40 -06:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-04-01 13:07:37 -05:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>nb-api</artifactId>
|
2022-03-09 22:05:16 -06:00
|
|
|
<version>4.17.12-SNAPSHOT</version>
|
2020-04-01 13:07:37 -05:00
|
|
|
</dependency>
|
|
|
|
|
2020-02-20 15:37:40 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-04-01 15:24:29 -05:00
|
|
|
<!-- jetty -->
|
2020-02-20 15:37:40 -06:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
2022-03-28 23:41:49 -05:00
|
|
|
<version>11.0.8</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
2022-03-15 06:17:24 -05:00
|
|
|
<version>11.0.8</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
2022-03-15 06:17:20 -05:00
|
|
|
<version>11.0.8</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-rewrite</artifactId>
|
2022-03-15 06:17:16 -05:00
|
|
|
<version>11.0.8</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
2021-03-10 23:49:43 -06:00
|
|
|
|
2020-02-20 15:37:40 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
|
|
<artifactId>jersey-server</artifactId>
|
2021-06-25 19:26:42 -05:00
|
|
|
<version>${jersey.version}</version>
|
2021-03-10 23:49:43 -06:00
|
|
|
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
|
|
<artifactId>jersey-common</artifactId>
|
2021-06-25 19:26:42 -05:00
|
|
|
<version>${jersey.version}</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.containers</groupId>
|
|
|
|
<artifactId>jersey-container-jetty-servlet</artifactId>
|
2021-06-25 19:26:42 -05:00
|
|
|
<version>${jersey.version}</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.inject</groupId>
|
|
|
|
<artifactId>jersey-hk2</artifactId>
|
2021-06-25 19:26:42 -05:00
|
|
|
<version>${jersey.version}</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
2021-08-02 12:22:04 -05:00
|
|
|
<version>1.21</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
2021-03-10 23:49:43 -06:00
|
|
|
|
2020-02-20 15:37:40 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
2022-03-12 06:07:12 -06:00
|
|
|
<version>3.0.4</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
2022-03-21 04:13:48 -05:00
|
|
|
<version>2.13.2</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-core</artifactId>
|
2021-03-10 23:49:43 -06:00
|
|
|
<version>2.3.0.1</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-impl</artifactId>
|
2021-03-10 23:49:43 -06:00
|
|
|
<version>2.4.0-b180830.0438</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
<version>2.4.0-b180830.0359</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
<artifactId>activation</artifactId>
|
2021-03-10 23:49:43 -06:00
|
|
|
<version>1.1.1</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
2021-03-10 23:49:43 -06:00
|
|
|
|
2020-02-20 15:37:40 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>virtdata-api</artifactId>
|
2022-03-09 22:05:16 -06:00
|
|
|
<version>4.17.12-SNAPSHOT</version>
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependency>
|
2020-04-01 13:07:37 -05:00
|
|
|
|
2020-02-20 15:37:40 -06:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|