Adam Gent

Results 165 comments of Adam Gent

FWIW how my company does this for the case with Jackson is our own annotation processors generates Jackson mixin classes [`ObjectMapper#addMixIn`](https://fasterxml.github.io/jackson-databind/javadoc/2.9/com/fasterxml/jackson/databind/ObjectMapper.html#addMixIn-java.lang.Class-java.lang.Class-). Essentially the builder could be a Mixin for the...

@cyki Using Findbug `@TypeQualifierDefault` is very legacy way of doing it. The newer way is to use `TYPE_USE` annotations like JSpecify, Checker or Eclipse (possibly IntelliJ depending on which one...

@eoglethorpe and @samlane The issue is that the source is synchronous, polling and does not take advantage of prefetching. Right when I looked at the code I knew it was...

Yeah that plugin should be even faster than mine because it does batching. I didn't implement batching but was going to (this is so that you only have to send...

I just glanced through blazes code base and even if nashhorn was removed/replaced it still would not work for plain Java because Blaze uses dynamic reflection to call the methods...

I have been using GNU Make for some time now for project build aliases particular for Maven. Even with the new `.mvn` directory (`jvm.config` and `maven.config`). The only reason I...

I am playing around with integrating Nima into another OSS project (Jooby) so having snapshots build would help greatly. I imagine with Nima being one of the first to utilize...

The default resolvers for using the builder can be seen here: https://github.com/jknack/handlebars.java/blob/52edac903966f607bf3e949d73ae325292c07997/handlebars/src/main/java/com/github/jknack/handlebars/Context.java#L261 And its defined here: https://github.com/jknack/handlebars.java/blob/52edac903966f607bf3e949d73ae325292c07997/handlebars/src/main/java/com/github/jknack/handlebars/ValueResolver.java#L37 What version of Java are you using (it should not matter since you...

@tpoll I use annotation processors in same maven module with Jooby no problem but I have not tried immutables. However I do not use the `annotationProcessorPath`. Try without using the...

Because if they (immutables) make the classes in the last round it is a race condition depending on where you put the generated file. Actually what Jooby does is technically...