Phillip Webb

Results 467 comments of Phillip Webb

Oh great! I've no idea how we'd get the information out of the Gradle/Maven plugin about which modules need to be excluded. Perhaps for Maven we can stash something in...

I've updated the NBT PR so that if there's an override flag when the metadata is copied an additional `reachability-metadata.properties` is written containing `override=true`. I think this means that when...

https://github.com/philwebb/spring-boot/tree/gh-31782 contains some prototype code that generates a `META-INF/native-image/exclude-config-args` file. This file contains lines that can be passed as `--exclude-config` arguments. I've opened https://github.com/paketo-buildpacks/native-image/issues/196 to see how the buildpack team...

We've done all we can on our end. I'm going to close this one for now but we can reopen if the buildpack support PR isn't merged.

I think we can close this one and adapt to `Map.of` in new code or when we touch existing classes. Doing an entire sweep at this point doesn't seem worth...

I think we can close this one and adapt to `Set.of` in new code or when we touch existing classes. Doing an entire sweep at this point doesn't seem worth...

Closing in favor of PR #32655. Thanks @bertoltmeier!

We're going to keep things as they are and expect users to add `@NestedConfigurationProperties` to classes if they're working on native applications. We're not going to break existing JVM users.

> are you envisioning that as a marker interface? I didn't give it too much thought to be honest, but I assumed it would have a slightly different signature to...

To be more precise, something like: ```java public interface ParameterResolver extends Extension { Object resolveParameter(ParameterContext parameterContext, ExtensionContext extensionContext) throws ParameterResolutionException; } ``` With the `resolveParameter` method returning an object or...