Chris Rankin

Results 16 comments of Chris Rankin

> So what would be the meaning of `ServiceLoader` for this particular component? (or for others, `jackson-databind`) It sounds like there is a problem to solve, I just want to...

> Thank you @chrisr3! Interesting that this hadn't been reported before but I guess better late than never :) No worries. The `maven-bundle-plugin` will do the "heavy lifting" for you;...

> I guess there can't be any external usage either since metadata is missing tho. :) There are "ways" around bundles having broken metadata. However, it's _much_ easier if the...

> note to self: ..., after which dataformat modules (`jackson-dataformats-binary`, `jackson-dataformats-text`, `jackson-dataformat-xml`) likewise. `jackson-dataformat-xml` will also require upgrading to use `woodstox-core` v6.3.0, of course :wink:.

Hi @manosbatsis, I've taken a look at your example project and I have identified two reasons why the test fails. Firstly, you are only initialising `MockServices` with the classes from...

> Quasar itself contains a simple caching mechanism in its co.paralleluniverse.fibers.instrument.MethodDatabase class, which will remember the results of instrumenting each loaded class. Corda only instruments classes when they are first...

> This change will require the Aries SPIFly bundle and the jackson-core bundle will not resolve wherever Aries SPIFly bundle is missing. The solution to that is to make the...

> I am not currently working on any changes; and if some are needed for 2.14.0 it's important to get these done ASAP as the last planned release candidate (2.14.0-rc2)...

> Unfortunately, had to revert due to #824. Not sure what would be the part forward here, but will not be happening for Jackson 2.14 as of now. I must...

A simpler way to reproduce this: ```kotlin class LambdaTest { private class Example(private val p: (Long) -> String) { constructor() : this({ it.toString() }) } @Test fun testLambda() { val...