This commit is contained in:
Jonathan Shook 2021-10-05 15:32:52 -05:00
parent 37150c33a7
commit edc43c5b02

View File

@ -1,98 +1,100 @@
<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"> <project xmlns="http://maven.apache.org/POM/4.0.0"
<modelVersion>4.0.0</modelVersion> 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> <parent>
<artifactId>mvn-defaults</artifactId> <artifactId>mvn-defaults</artifactId>
<groupId>io.nosqlbench</groupId> <groupId>io.nosqlbench</groupId>
<version>4.15.58-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 -->
<!-- The ONLY upstream module in project from nb-api -->
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>nb-annotations</artifactId>
<version>4.15.58-SNAPSHOT</version> <version>4.15.58-SNAPSHOT</version>
</dependency> <relativePath>../mvn-defaults</relativePath>
</parent>
<dependency> <artifactId>nb-api</artifactId>
<groupId>com.vladsch.flexmark</groupId> <packaging>jar</packaging>
<artifactId>flexmark-ext-yaml-front-matter</artifactId> <name>${project.artifactId}</name>
<version>0.61.6</version> <description>
</dependency> The top level API module for NoSQLBench. This module should have no internal
<dependency> module dependencies other than the mvn-default module.
<groupId>com.vladsch.flexmark</groupId> All modules within NoSQLBench can safely depend on this module with circular
<artifactId>flexmark-html2md-converter</artifactId> dependencies. This module provides cross-cutting code infrastracture, such as
<version>0.61.6</version> path utilities and ways of describing services used between modules.
</dependency> 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 -->
<!-- The ONLY upstream module in project from nb-api -->
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>nb-annotations</artifactId>
<version>4.15.58-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-ext-yaml-front-matter</artifactId>
<version>0.61.6</version>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-html2md-converter</artifactId>
<version>0.61.6</version>
</dependency>
<dependency> <dependency>
<groupId>net.sf.jopt-simple</groupId> <groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId> <artifactId>jopt-simple</artifactId>
<version>5.0.3</version> <version>5.0.3</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.google.code.gson</groupId> <groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId> <artifactId>gson</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.github.oshi</groupId> <groupId>com.github.oshi</groupId>
<artifactId>oshi-core</artifactId> <artifactId>oshi-core</artifactId>
</dependency> </dependency>
<!-- perf testing --> <!-- perf testing -->
<dependency> <dependency>
<groupId>org.openjdk.jmh</groupId> <groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId> <artifactId>jmh-core</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.openjdk.jmh</groupId> <groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId> <artifactId>jmh-generator-annprocess</artifactId>
</dependency> </dependency>
<!-- TODO: Move this down to virtdata if it is the only module group using it --> <!-- TODO: Move this down to virtdata if it is the only module group using it -->
<dependency> <dependency>
<groupId>org.apache.commons</groupId> <groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId> <artifactId>commons-csv</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<resources> <resources>
<resource> <resource>
<directory>src/main/resources</directory> <directory>src/main/resources</directory>
<excludes> <excludes>
<exclude>docs-for-testing-only/**</exclude> <exclude>docs-for-testing-only/**</exclude>
</excludes> </excludes>
<includes> <includes>
<include>**</include> <include>**</include>
</includes> </includes>
</resource> </resource>
</resources> </resources>
</build> </build>
</project> </project>