Skip to content

Commit fba4037

Browse files
authored
Using only slf4j and making the log4j binding provided (#113)
1 parent fdd4557 commit fba4037

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

pom.xml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@
5050
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5151
<maven.compiler.source>1.8</maven.compiler.source>
5252
<maven.compiler.target>1.8</maven.compiler.target>
53-
<bullet.record.version>1.2.1</bullet.record.version>
53+
<bullet.record.version>1.2.2</bullet.record.version>
5454
<sketches.version>0.9.1</sketches.version>
55+
<slf4jj.version>1.7.32</slf4jj.version>
5556
<log4j.version>2.17.1</log4j.version>
5657
</properties>
5758

@@ -68,16 +69,11 @@
6869
<version>3.5.7</version>
6970
<scope>test</scope>
7071
</dependency>
71-
<dependency>
72-
<groupId>org.apache.logging.log4j</groupId>
73-
<artifactId>log4j-core</artifactId>
74-
<version>${log4j.version}</version>
75-
<scope>provided</scope>
76-
</dependency>
7772
<dependency>
7873
<groupId>org.apache.logging.log4j</groupId>
7974
<artifactId>log4j-slf4j-impl</artifactId>
8075
<version>${log4j.version}</version>
76+
<scope>provided</scope>
8177
</dependency>
8278
<dependency>
8379
<groupId>org.projectlombok</groupId>
@@ -90,6 +86,11 @@
9086
<artifactId>bullet-record</artifactId>
9187
<version>${bullet.record.version}</version>
9288
</dependency>
89+
<dependency>
90+
<groupId>org.slf4j</groupId>
91+
<artifactId>slf4j-api</artifactId>
92+
<version>${slf4jj.version}</version>
93+
</dependency>
9394
<dependency>
9495
<groupId>com.yahoo.datasketches</groupId>
9596
<artifactId>sketches-core</artifactId>

0 commit comments

Comments
 (0)