Cédric Champeau

Results 298 comments of Cédric Champeau

The platform will _not_ downgrade your dependencies. The tests use Kotlin 1.7: https://ge.micronaut.io/s/rl732d6fektrq/dependencies?configurationFilter=WyJ0ZXN0Q29tcGlsZUNsYXNzcGF0aCIsInRlc3RSdW50aW1lQ2xhc3NwYXRoIl0&dependencies=kotlin-st&expandAll&focusedDependency=WzI2LDEyLDExNTYsWzAsMSxbMTRdXV0&focusedDependencyView=versions&projectFilter=WyI6dGVzdC1zdWl0ZS1rb3RsaW4iXQ So the dependency is upgraded to 1.7, and which brings the Kotlin 1.7 BOM, which in turn...

The responsible library seems to be `io.micronaut.test:micronaut-test-kotest:3.5.0` which is wants `org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.10`. See https://github.com/micronaut-projects/micronaut-test/blob/master/gradle/libs.versions.toml#L13 I'm not sure which one is correct, but having core which wants 1.6 and libraries 1.7 seems...

@RainerW @lefou Let's see what we are talking about today. It's about software that generates a static website. Do we really need CDI for that? I honestly don't think so....

I'm not sure that would be easy to do. Hitting CTRL+C will interrupt the Gradle build and it is expected, from my POV, that it doesn't do _more_. Maybe we...

If the app ends with an different exit code, you can still use `--continue` to get past.

Which version of GraalVM are you using? The error message indicates that you are using the `@argfile` which is only supported since GraalVM 21.3. If you are on an older...

I totally agree that we should provide a more build-tool friendly API to fetch a GraalVM build _with native image preinstalled_. Gradle's toolchain mechanism is two fold: 1. it can...

Related: https://github.com/gradle/gradle/pull/18028

Would you mind giving me a bit more context? It seems that you're saying that Spring AOT would generate some sources in `target/generated-sources/spring-aot/src/main/java`. Then there's this `target/sources` directory. What does...

I guess I'm wondering what is causing `gdb` to look into `target/sources`, since `target` is a Maven thing.