mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
centralize log4j2 and slf4j stub config
This commit is contained in:
parent
2215fc94ed
commit
b7c246426c
@ -97,12 +97,6 @@
|
|||||||
<!-- <version>3.7</version>-->
|
<!-- <version>3.7</version>-->
|
||||||
<!-- </dependency>-->
|
<!-- </dependency>-->
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>slf4j-api</artifactId>
|
|
||||||
<version>1.7.25</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- test only scope -->
|
<!-- test only scope -->
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
1503
mvn-defaults/pom.xml
1503
mvn-defaults/pom.xml
File diff suppressed because it is too large
Load Diff
159
nb-api/pom.xml
159
nb-api/pom.xml
@ -1,100 +1,93 @@
|
|||||||
<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>3.12.156-SNAPSHOT</version>
|
<version>3.12.156-SNAPSHOT</version>
|
||||||
<relativePath>../mvn-defaults</relativePath>
|
<relativePath>../mvn-defaults</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>nb-api</artifactId>
|
<artifactId>nb-api</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>${project.artifactId}</name>
|
<name>${project.artifactId}</name>
|
||||||
<description>
|
<description>
|
||||||
The top level API module for NoSQLBench. This module should have no internal
|
The top level API module for NoSQLBench. This module should have no internal
|
||||||
module dependencies other than the mvn-default module.
|
module dependencies other than the mvn-default module.
|
||||||
All modules within NoSQLBench can safely depend on this module with circular
|
All modules within NoSQLBench can safely depend on this module with circular
|
||||||
dependencies. This module provides cross-cutting code infrastracture, such as
|
dependencies. This module provides cross-cutting code infrastracture, such as
|
||||||
path utilities and ways of describing services used between modules.
|
path utilities and ways of describing services used between modules.
|
||||||
It is also the transitive aggregation point for system-wide library dependencies
|
It is also the transitive aggregation point for system-wide library dependencies
|
||||||
for logging and testing or similar needs.
|
for logging and testing or similar needs.
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
<!-- logging -->
|
<!-- logging -->
|
||||||
<!-- TODO: consolidate to Log4j 2 -->
|
<!-- TODO: consolidate to Log4j 2 -->
|
||||||
|
|
||||||
<!-- The ONLY upstream module in project from nb-api -->
|
<!-- The ONLY upstream module in project from nb-api -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.nosqlbench</groupId>
|
<groupId>io.nosqlbench</groupId>
|
||||||
<artifactId>nb-annotations</artifactId>
|
<artifactId>nb-annotations</artifactId>
|
||||||
<version>3.12.156-SNAPSHOT</version>
|
<version>3.12.156-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.vladsch.flexmark</groupId>
|
<groupId>com.vladsch.flexmark</groupId>
|
||||||
<artifactId>flexmark-ext-yaml-front-matter</artifactId>
|
<artifactId>flexmark-ext-yaml-front-matter</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>com.vladsch.flexmark</groupId>
|
|
||||||
<artifactId>flexmark-html2md-converter</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
<groupId>com.vladsch.flexmark</groupId>
|
||||||
<artifactId>log4j-api</artifactId>
|
<artifactId>flexmark-html2md-converter</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
<groupId>net.sf.jopt-simple</groupId>
|
||||||
<artifactId>log4j-core</artifactId>
|
<artifactId>jopt-simple</artifactId>
|
||||||
</dependency>
|
<version>5.0.3</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.sf.jopt-simple</groupId>
|
<groupId>com.google.code.gson</groupId>
|
||||||
<artifactId>jopt-simple</artifactId>
|
<artifactId>gson</artifactId>
|
||||||
<version>5.0.3</version>
|
</dependency>
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
<!-- perf testing -->
|
||||||
<groupId>com.google.code.gson</groupId>
|
|
||||||
<artifactId>gson</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>
|
||||||
|
|
||||||
<dependency>
|
<!-- TODO: Move this down to virtdata if it is the only module group using it -->
|
||||||
<groupId>org.openjdk.jmh</groupId>
|
<dependency>
|
||||||
<artifactId>jmh-core</artifactId>
|
<groupId>org.apache.commons</groupId>
|
||||||
</dependency>
|
<artifactId>commons-csv</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 -->
|
</dependencies>
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.commons</groupId>
|
|
||||||
<artifactId>commons-csv</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
</dependencies>
|
<build>
|
||||||
|
<resources>
|
||||||
<build>
|
<resource>
|
||||||
<resources>
|
<directory>src/main/resources</directory>
|
||||||
<resource>
|
<excludes>
|
||||||
<directory>src/main/resources</directory>
|
<exclude>docs-for-testing-only/**</exclude>
|
||||||
<excludes>
|
</excludes>
|
||||||
<exclude>docs-for-testing-only/**</exclude>
|
<includes>
|
||||||
</excludes>
|
<include>**</include>
|
||||||
<includes>
|
</includes>
|
||||||
<include>**</include>
|
</resource>
|
||||||
</includes>
|
</resources>
|
||||||
</resource>
|
</build>
|
||||||
</resources>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
@ -20,15 +20,6 @@
|
|||||||
<artifactId>antlr4-runtime</artifactId>
|
<artifactId>antlr4-runtime</artifactId>
|
||||||
</dependency>
|
</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>
|
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
Loading…
Reference in New Issue
Block a user