You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to use metrics datadog using the JPMS (Java Platform Module System) is challenging, since one requires both metrics.datadog and dropwizard.metrics.datadog, which both use the same package names. For example, my module-info.java file could look like this:
...but this gives me the following error: module com.whatever reads package org.coursera.metrics.datadog from both dropwizard.metrics.datadog and metrics.datadog
I'm not sure how this problem can be solved unless the package names are altered.
The text was updated successfully, but these errors were encountered:
Trying to use metrics datadog using the JPMS (Java Platform Module System) is challenging, since one requires both
metrics.datadog
anddropwizard.metrics.datadog
, which both use the same package names. For example, my module-info.java file could look like this:...but this gives me the following error:
module com.whatever reads package org.coursera.metrics.datadog from both dropwizard.metrics.datadog and metrics.datadog
I'm not sure how this problem can be solved unless the package names are altered.
The text was updated successfully, but these errors were encountered: