module/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/info/Info.java
Info class has @Nullable values:
public @Nullable Object get(String id) {
But its Builder class not:
public Builder withDetail(String key, Object value) {
Now it is impossible to build Info with nullable value argument in kotlin.
Error example: "Require Any, but found Boolean?"
Please make Info and its Builder consistent.