neo4j-logging
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-logging</artifactId> <version>2025.04.0</version> </dependency>
<?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>org.neo4j</groupId> <artifactId>parent</artifactId> <version>2025.04.0</version> <relativePath>../../pom.xml</relativePath> </parent> <properties> <moduleName>org.neo4j.logging</moduleName> <default.jupiter.test.mode>concurrent</default.jupiter.test.mode> <!-- forceCreation because otherwise the jar plugin and shade plugin don't play well together. From the jar plugin docs: "This plugin can not detect the post-processing, and so leaves the post-processed jar in place. This can lead to failures when those plugins do not expect to find their own output as an input."--> <maven.jar.forceCreation>true</maven.jar.forceCreation> </properties> <modelVersion>4.0.0</modelVersion> <artifactId>neo4j-logging</artifactId> <packaging>jar</packaging> <name>Neo4j - Logging</name> <description>Logging interfaces and basic logger implementations.</description> <url>http://components.neo4j.org/${project.artifactId}/${project.version}</url> <scm> <connection>scm:git:git://github.com/neo4j/neo4j.git</connection> <developerConnection>scm:git:git@github.com:neo4j/neo4j.git</developerConnection> <url>https://github.com/neo4j/neo4j</url> </scm> <dependencies> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-io</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>io-test-utils</artifactId> <version>${project.version}</version> <scope>test</scope> </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> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-layout-template-json</artifactId> </dependency> </dependencies> </project>