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
I noticed that the core library exports the package com.google.thirdparty of Guava.
Is there any reason why this package is not relocated, like all other packages of dependencies?
When this package is relocated, the SDK also seems to be compatible with Java 9.
The text was updated successfully, but these errors were encountered:
Further, about Java 9, overall the main issue with the usage is on how to use the Java agent. Have you tried using Java agent to collect dependencies in Java 9 and did it worked out?
The reason why this is relevant for Java 9 is that JPMS does not allow two modules exporting the same package. So when I try to compile a project that uses both Guava and ApplicationInsights compilation fails.
When this package is relocated the project can be compiled, but I was not aware of the problems with the Java agent.
I noticed that the core library exports the package
com.google.thirdparty
of Guava.Is there any reason why this package is not relocated, like all other packages of dependencies?
When this package is relocated, the SDK also seems to be compatible with Java 9.
The text was updated successfully, but these errors were encountered: