-
Notifications
You must be signed in to change notification settings - Fork 344
Java 6 compatibility #75
Comments
Hi, patrice. It is probably the case that java 6 requires only this change. can you temporarily stick in animal sniffer to confirm? (after setting target level)
|
Hi @adriancole, after checking your code, I'm actually very confused now. You have the animal sniffer already in there, and I saw that you even have the definition in the pom.xml of the API project like this:
The
Could it be that you want the API to be 1.6 compatible in the first place as defined in the pom? That would be perfect for us 😄 |
This ticket has been solved by 28d8616 . |
Hi,
for the background: I'm related to inspectIT (https://github.com/inspectIT/inspectIT) and we are currently integrating a full remoting capability into our tool. Recently, we found your library and we really want to use it as our base. The problem we have currently is that you define Java 7 as a minimum requirement whereas we do need to support Java 6 applications (as many applications in production still use this version).
The only thing we found in your codebase that really needs Java 7 seems to be the usage of the AutoCloseable interface (https://github.com/opentracing/opentracing-java/blob/master/opentracing-api/src/main/java/io/opentracing/Span.java#L23) .
Is there a possibility that you can create a Java 6 compatibility version of your API? Either by removing the dependency on the AutoCloseable interface or maybe through another version somehow? As mentioned, we really want to use your library, it is exactly what we need!
Thanks,
Patrice
The text was updated successfully, but these errors were encountered: