Sébastien Deleuze

Results 487 comments of Sébastien Deleuze

After discussing with the Kotlin team, it looks like to path to move forward it to use `kotlinx-metadata-jvm` (about to be stabilised in Kotlin 2.0) to read metadata and keep...

> Do `kotlin-reflect` and `kotlinx-metadata-jvm` have many overlapping dependencies? I think the answer is no as `kotlinx-metadata-jvm` has no dependency except the standard library. > Since kotlinx-metadata-jvm also has a...

See related interesting comment [here](https://youtrack.jetbrains.com/issue/KT-63391/Expose-a-partial-read-API-in-kotlinx-metadata-jvm#focus=Comments-27-9607822.0-0).

Looks like the `aspect` smoke test samples now work, but there are other issues preventing it to work in a reliable fashion for various use case. #29519 is likely one...

We should also check if aspect annotations and the methods and classes where they are applied are available via reflection, I suspect #29765 sample is broken by annotation not accessible...

We could potentially reuse Spring AOP infrastructure to identify the reflection entries needed to make aspects working out of the box. We could create a dedicated `BeanFactoryInitializationAotProcessor` that would use...

Sorry for moving that again, but I won't have the bandwidth to tackle that in Spring 6.0 timeframe, so let's target 6.1.

This fix has been tested successfully with a few samples (including `spring-aot-smoke-test/framework/aspect` one). #30529 repro is still broken for reasons that remain to be identified, but this will be handle...

FYI the currrent workaround proposed to get both Native Build Tools and Buildpacks support is: ``` org.graalvm.buildtools native-maven-plugin -Djava.security.properties=src/main/resources/custom.security org.springframework.boot spring-boot-maven-plugin -Djava.security.properties=/workspace/BOOT-INF/classes/custom.security ``` With an `src/main/resources/custom.security` file with the following...

Potentially yes. @dnestoro Could you please check and close this issue if confirmed?