mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-25 18:20:33 -06:00
94 lines
3.0 KiB
XML
94 lines
3.0 KiB
XML
<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>
|
|
|
|
|
|
<parent>
|
|
<artifactId>mvn-defaults</artifactId>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<version>3.12.89-SNAPSHOT</version>
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>nb-api</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>${project.artifactId}</name>
|
|
<description>
|
|
The top level API module for NoSQLBench. This module should have no internal
|
|
module dependencies other than the mvn-default module.
|
|
All modules within NoSQLBench can safely depend on this module with circular
|
|
dependencies. This module provides cross-cutting code infrastracture, such as
|
|
path utilities and ways of describing services used between modules.
|
|
It is also the transitive aggregation point for system-wide library dependencies
|
|
for logging and testing or similar needs.
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- logging -->
|
|
<!-- TODO: consolidate to Log4j 2 -->
|
|
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.vladsch.flexmark</groupId>
|
|
<artifactId>flexmark-ext-yaml-front-matter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.vladsch.flexmark</groupId>
|
|
<artifactId>flexmark-html2md-converter</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<!-- perf testing -->
|
|
|
|
<dependency>
|
|
<groupId>org.openjdk.jmh</groupId>
|
|
<artifactId>jmh-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjdk.jmh</groupId>
|
|
<artifactId>jmh-generator-annprocess</artifactId>
|
|
</dependency>
|
|
|
|
<!-- unit testing -->
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- TODO: Move this down to virtdata if it is the only module group using it -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-csv</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|