2022-05-31 21:02:12 -05:00
|
|
|
<!--
|
|
|
|
~ Copyright (c) 2022 nosqlbench
|
|
|
|
~
|
|
|
|
~ 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.
|
|
|
|
-->
|
|
|
|
|
2023-01-12 11:25: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">
|
2021-07-20 18:26:34 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>mvn-defaults</artifactId>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
2023-01-09 13:36:28 -06:00
|
|
|
<version>4.17.33-SNAPSHOT</version>
|
2021-07-20 18:26:34 -05:00
|
|
|
<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>
|
|
|
|
|
2022-05-31 21:01:06 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna</artifactId>
|
|
|
|
</dependency>
|
2022-08-16 00:42:52 -05:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>info.picocli</groupId>
|
|
|
|
<artifactId>picocli</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-05-31 21:01:06 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna-platform</artifactId>
|
|
|
|
</dependency>
|
2021-07-20 18:26:34 -05:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>nb-annotations</artifactId>
|
2023-01-09 13:36:28 -06:00
|
|
|
<version>4.17.33-SNAPSHOT</version>
|
2021-07-20 18:26:34 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.vladsch.flexmark</groupId>
|
|
|
|
<artifactId>flexmark-ext-yaml-front-matter</artifactId>
|
2022-07-06 19:23:30 -05:00
|
|
|
<version>0.64.0</version>
|
2021-07-20 18:26:34 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.vladsch.flexmark</groupId>
|
|
|
|
<artifactId>flexmark-html2md-converter</artifactId>
|
2022-07-06 19:23:33 -05:00
|
|
|
<version>0.64.0</version>
|
2021-07-20 18:26:34 -05:00
|
|
|
</dependency>
|
|
|
|
|
2022-01-11 16:54:33 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-07-20 18:26:34 -05:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.jopt-simple</groupId>
|
|
|
|
<artifactId>jopt-simple</artifactId>
|
2022-01-10 22:23:36 -06:00
|
|
|
<version>5.0.4</version>
|
2021-07-20 18:26:34 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.oshi</groupId>
|
2022-03-22 11:22:24 -05:00
|
|
|
<artifactId>oshi-core-java11</artifactId>
|
2021-07-20 18:26:34 -05:00
|
|
|
</dependency>
|
|
|
|
|
2021-10-06 17:49:27 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
<artifactId>aws-java-sdk-s3</artifactId>
|
2023-01-10 16:59:59 -06:00
|
|
|
<version>1.12.368</version>
|
2021-10-06 17:49:27 -05:00
|
|
|
</dependency>
|
2021-12-20 10:03:32 -06:00
|
|
|
|
2021-10-06 17:49:27 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
<version>2.4.0-b180830.0359</version>
|
|
|
|
</dependency>
|
2021-10-05 15:32:52 -05:00
|
|
|
<!-- perf testing -->
|
|
|
|
|
2021-07-20 18:26:34 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjdk.jmh</groupId>
|
|
|
|
<artifactId>jmh-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjdk.jmh</groupId>
|
|
|
|
<artifactId>jmh-generator-annprocess</artifactId>
|
|
|
|
</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>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-08-10 10:33:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
<artifactId>metrics-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hdrhistogram</groupId>
|
|
|
|
<artifactId>HdrHistogram</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mitchtalmadge</groupId>
|
|
|
|
<artifactId>ascii-data</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.graalvm.sdk</groupId>
|
|
|
|
<artifactId>graal-sdk</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2021-07-20 18:26:34 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2023-01-12 11:25:40 -06:00
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.8.8</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>prepare-agent</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>report</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>jacoco-check</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<rule>
|
|
|
|
<element>BUNDLE</element>
|
|
|
|
<limits>
|
|
|
|
<limit>
|
|
|
|
<counter>INSTRUCTION</counter>
|
|
|
|
<value>COVEREDRATIO</value>
|
|
|
|
<minimum>0.00</minimum>
|
|
|
|
<maximum>1.00</maximum>
|
|
|
|
</limit>
|
|
|
|
</limits>
|
|
|
|
</rule>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
2021-07-20 18:26:34 -05:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>docs-for-testing-only/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
<includes>
|
|
|
|
<include>**</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
2020-04-30 10:39:37 -05:00
|
|
|
|
2020-04-01 12:27:25 -05:00
|
|
|
</project>
|