diff --git a/pom.xml b/pom.xml
index 9f10939c0..3fb9f2a14 100644
--- a/pom.xml
+++ b/pom.xml
@@ -16,7 +16,7 @@
UTF-8
UTF-8
- 2.28.0
+ 2.29.0
1.16.0
2.13.0
diff --git a/src/main/java/io/cryostat/Producers.java b/src/main/java/io/cryostat/Producers.java
index 65cbbb218..4fdc29f61 100644
--- a/src/main/java/io/cryostat/Producers.java
+++ b/src/main/java/io/cryostat/Producers.java
@@ -94,8 +94,7 @@ public static ScheduledExecutorService produceScheduledExecutorService() {
@RequestScoped
@DefaultBean
public static InterruptibleReportGenerator produceInterruptibleReportGenerator() {
- return new InterruptibleReportGenerator(
- ForkJoinPool.commonPool(), io.cryostat.core.log.Logger.INSTANCE);
+ return new InterruptibleReportGenerator(ForkJoinPool.commonPool());
}
@Produces
diff --git a/src/main/java/io/cryostat/discovery/JDPDiscovery.java b/src/main/java/io/cryostat/discovery/JDPDiscovery.java
index 13fb3a65d..fd203863f 100644
--- a/src/main/java/io/cryostat/discovery/JDPDiscovery.java
+++ b/src/main/java/io/cryostat/discovery/JDPDiscovery.java
@@ -51,7 +51,7 @@ public class JDPDiscovery implements Consumer {
@Produces
@ApplicationScoped
static JvmDiscoveryClient produceJvmDiscoveryClient() {
- return new JvmDiscoveryClient(io.cryostat.core.log.Logger.INSTANCE);
+ return new JvmDiscoveryClient();
}
@Inject Logger logger;