-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
split compile into api/implementation, stop depending on conjure #394
base: master
Are you sure you want to change the base?
Conversation
Generate changelog in
|
import com.palantir.docker.compose.report.Report; | ||
|
||
class ReportPoster { | ||
private static final ObjectMapper OBJECT_MAPPER = ObjectMappers.newClientObjectMapper(); | ||
private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this definitely produce the same json output?
Curious: is there any particular reason that the |
removing conjure isn't strictly necessary, it's just tech-debt that you hit in #323 (yeah conjure-java-jackson-serialization is a small lib but having the fewest external dependencies makes for an easier time dealing with jar conflicts) |
No description provided.