Skip to content

Commit

Permalink
Added slf4j dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
castortech committed Jul 5, 2023
1 parent ea85ff0 commit 51cf256
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
24 changes: 21 additions & 3 deletions mdbxjni/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,26 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava-version}</version>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.11.1</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>ch.qos.logback</groupId>-->
<!-- <artifactId>logback-classic</artifactId>-->
<!-- <version>1.3.7</version>-->
<!-- <scope>test</scope>-->
<!-- </dependency>-->
</dependencies>

<build>
Expand Down Expand Up @@ -108,6 +124,8 @@
<windowsProjectName>mdbxjni</windowsProjectName>
<callbacks>true</callbacks>
<windowsBuildTool>msbuild</windowsBuildTool>
<!-- <windowsConfiguration>debug</windowsConfiguration>-->
<windowsConfiguration>release</windowsConfiguration>
<windowsCustomProps>true</windowsCustomProps>
<windowsToolsVersion>17.0</windowsToolsVersion>
<windowsTargetPlatformVersion>10.0.19041.0</windowsTargetPlatformVersion>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<hawtjni-version>1.19-SNAPSHOT</hawtjni-version>
<java-version>11</java-version>
<guava-version>[30.0-jre,)</guava-version>
<slf4j-version>1.7.36</slf4j-version>
<junit-version>4.13.2</junit-version>
<mvn-compiler-version>3.11.0</mvn-compiler-version>
<mvn-bundle-version>5.1.3</mvn-bundle-version>
Expand Down

0 comments on commit 51cf256

Please sign in to comment.