2015-08-29 00:12:15 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.sismics.docs</groupId>
|
|
|
|
<artifactId>docs-parent</artifactId>
|
2018-03-01 14:34:09 +01:00
|
|
|
<version>1.6-SNAPSHOT</version>
|
2016-05-05 22:43:18 +02:00
|
|
|
<relativePath>..</relativePath>
|
2015-08-29 00:12:15 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>docs-stress</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Docs Stress</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Dependencies to Jersey -->
|
|
|
|
<dependency>
|
2015-09-07 21:51:13 +02:00
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
2015-08-29 00:12:15 +02:00
|
|
|
<artifactId>jersey-client</artifactId>
|
|
|
|
</dependency>
|
2015-09-07 21:51:13 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-multipart</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2015-08-31 22:53:33 +02:00
|
|
|
<!-- Depenedencies to Docs -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sismics.docs</groupId>
|
2016-04-16 20:54:23 +02:00
|
|
|
<artifactId>docs-web-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sismics.docs</groupId>
|
2015-08-31 22:53:33 +02:00
|
|
|
<artifactId>docs-web-common</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
|
|
|
|
2015-08-29 00:12:15 +02:00
|
|
|
<!-- Other external dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
</project>
|