Added the slf4j log manager to the dependencies

This commit is contained in:
mathias 2021-08-19 12:06:38 +02:00
parent 21376fbf77
commit cca349ef60
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

14
pom.xml
View File

@ -19,6 +19,20 @@
<artifactId>mysql-connector-java</artifactId>
<version>8.0.25</version>
</dependency>
<!-- Logger API (api) -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
</dependency>
<!-- Logger API (simple) -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.32</version>
</dependency>
</dependencies>
</project>