Marcos Canales Mayo
Marcos Canales Mayo
Apparently there's already a working version of this extension with Gatling 3.5 and Scala 2.13 I was wondering if/when that version is going to be published to Maven Central so...
When running Gatling tests like the following: ``` ./gradlew gatlingRun-my.unexisting.gatling.test.GatlingTest ``` then currently the Gradle task is finishing successfully if the test doesn't exist. My expectation is that it should...
Currently, the Gradle scaffolding is invoking gradle directly here: https://github.com/habitat-sh/core-plans/blob/master/scaffolding-gradle/lib/scaffolding.sh#L121-L133 ```sh scaffolding_build() { case "$_app_type" in springboot) gradle build --project-cache-dir "$GRADLE_USER_HOME" -x test ;; ratpack) gradle installDist --project-cache-dir "$GRADLE_USER_HOME" -x...
Assume we have a project with a structure like in this [Gradle example](https://docs.gradle.org/current/userguide/organizing_gradle_projects.html#sec:build_sources) where we have a `buildSrc` folder which contains a `Libraries` class defining common dependencies that can be...
As stated in [the Gradle scaffolding reference](https://github.com/habitat-sh/core-plans/blob/master/scaffolding-gradle/doc/reference.md), it looks for a `build.gradle` or `settings.gradle` file, otherwise the scaffolding will fail. This makes the scaffolding not support projects with Kotlin based...
### Expected Behavior Given this controller ``` @Controller("/echo") public class EchoController { @Post(consumes = MediaType.MULTIPART_FORM_DATA) public Mono echo( HttpRequest request, @Part("aFile") @Nullable CompletedFileUpload aFile, @Part("aPart") @Nullable CompletedPart aPart) { return...
### Version 4.3.3~ ### Context Call to `WebClient.close()` does not wait for resources to be released. Method signature was changed so that it returns a `Future` here https://github.com/vert-x3/vertx-web/pull/2197 But later...
### Actual Behavior Rancher desktop is failing to start due to lima error ### Steps to Reproduce 1. Open Rancher desktop 2. Make mac laptop sleep 3. Open again, quit...
Add missing documentation for configuration to disable the Kafka Streams metrics.
### Expected Behavior If a Micronaut test is annotated like `@MicronautTest(rebuildContext = true)`, I'd expect everything to be cleaned up including the registered metrics objects (when using Micronaut Micrometer integration)....