nosqlbench/docsys/pom.xml

121 lines
3.8 KiB
XML
Raw Normal View History

2020-02-20 15:37:40 -06: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">
<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>
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>
<version>3.12.104-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>
<version>3.12.104-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>
<!-- test -->
2020-02-20 15:37:40 -06:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
2020-02-20 15:37:40 -06:00
</dependency>
2020-02-20 15:37:40 -06:00
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
2020-02-20 15:37:40 -06:00
<scope>test</scope>
</dependency>
<!-- jetty -->
2020-02-20 15:37:40 -06:00
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-rewrite</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-jetty-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
</dependency>
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>virtdata-api</artifactId>
<version>3.12.104-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>