Lars Benedetto
Lars Benedetto
> With these changes, does clicking over a username or community name go to the underlying post instead, or does it just ignore the click and do nothing? I think...
Ah ok, I was mislead by the documentation  I guess I incorrectly assumed that these properties could be set the same through the SonarQube UI.
Wait a minute, the default value in SonarQube includes an ENV var. So either it should be fixed so that the ENV var is resolved or the default value should...
If the default value currently works in Jenkins then nevermind. If the default value currently does not work in Jenkins, then I have no idea what it should default to...
Thanks for updating. I ended up switching to a relatively new gradle feature called java-test-fixtures which is a cleaner solution for my project anyway. It allows sharing of specific classes...
Sure. I made a pull request, but like I said, it doesn't work. https://github.com/Hugobros3/Enklume/pull/2/
ParameterNamesModule causes @ConstructorProperties to be ignored, constructor called with null value
That makes things worse: ``` com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `TestClass` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (String)"{"value":"test"}";...
ParameterNamesModule causes @ConstructorProperties to be ignored, constructor called with null value
I've updated my example test to avoid lombok, and the issue still occurs. I've tested adding `@JsonCreator(mode = JsonCreator.Mode.PROPERTIES)`, and it doesn't do anything on its own, one of the...
ParameterNamesModule causes @ConstructorProperties to be ignored, constructor called with null value
In `AnnotationIntrospectorPair::findImplicitPropertyName` the primary (`ParameterNamesAnnotationIntrospector`) finds `"somethingElse"` and the secondary (`JacksonAnnotationIntrospector`) would find `"value"` if it was called (which it isn't because the result from the primary is not null)....