Skip to content

Commit

Permalink
fix: Use the latest slf4j.
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed May 25, 2023
1 parent 1581231 commit 29f1b53
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/project/java/bee/Project.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
package bee;

import static bee.api.License.*;
import static bee.api.License.MIT;

import javax.lang.model.SourceVersion;

Expand Down Expand Up @@ -44,9 +44,11 @@ public class Project extends bee.api.Project {
// require("org.apache.maven.resolver", "maven-resolver-transport-http");

// LOGGER
require("org.slf4j", "slf4j-nop");
require("org.slf4j", "jul-to-slf4j");
require("org.slf4j", "slf4j-api", "[2.0,)");
// require("org.slf4j", "slf4j-nop");
// require("org.slf4j", "jul-to-slf4j");
// require("org.slf4j", "jcl-over-slf4j"); for maven-resolver-transport-http
require("com.github.teletha", "conjure");

// REQUIRED
require("com.github.teletha", "sinobu");
Expand Down

0 comments on commit 29f1b53

Please sign in to comment.