nosqlbench/nb-docsys/pom.xml

138 lines
4.5 KiB
XML
Raw Normal View History

2022-06-23 00:20:33 -05:00
<!--
~ Copyright (c) 2022-2023 nosqlbench
2022-06-23 00:20:33 -05:00
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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>
2024-04-11 22:50:13 -05:00
<artifactId>nb-docsys</artifactId>
2020-02-20 15:37:40 -06:00
<packaging>jar</packaging>
2024-04-11 22:50:13 -05:00
<name>${project.artifactId}</name>
<url>https://nosqlbench.io/</url>
2021-06-25 19:26:42 -05:00
<properties>
<jersey.version>3.1.5</jersey.version>
2021-06-25 19:26:42 -05:00
</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>
2023-01-19 16:53:33 -06:00
<version>${revision}</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>
2023-01-19 16:53:33 -06:00
<version>${revision}</version>
2020-04-01 13:07:37 -05:00
</dependency>
<!-- jetty -->
2020-02-20 15:37:40 -06:00
2024-10-23 13:40:37 -05:00
2020-02-20 15:37:40 -06:00
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>11.0.24</version>
2020-02-20 15:37:40 -06:00
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>11.0.24</version>
2020-02-20 15:37:40 -06:00
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>11.0.24</version>
2020-02-20 15:37:40 -06:00
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-rewrite</artifactId>
<version>11.0.24</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>
<version>1.26.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>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<version>3.1.5</version>
2020-02-20 15:37:40 -06:00
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>2.18.1</version>
2020-02-20 15:37:40 -06:00
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>4.0.5</version>
2020-02-20 15:37:40 -06:00
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>4.0.5</version>
2021-03-10 23:49:43 -06:00
</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>
2023-01-19 16:53:33 -06:00
<version>${revision}</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>