Julien Ponge

Results 261 comments of Julien Ponge

Ok I've made a quick sample: ```java package sample; import io.vertx.core.Vertx; import io.vertx.core.AbstractVerticle; public class App extends AbstractVerticle { @Override public void start() { String message = System.getProperty("message", "You fail");...

Yes, Gradle reacts fine to SIGINT > On 10 Jan 2020, at 22:18, Ahmet Enes Duruer wrote: > > Is the Ctrl + C working? > > — > You...

All reports point to Windows. I don't have a Windows machine and the issue does not seem reproducible on any Unix system. Until somebody with Windows expertise volunteers to look...

I'd say it is best to follow the recent versions of Vert.x than have the plugin maintain a list of versions to blacklist. I think 3.7.0 was more an exception...

I finally took time to test 😉 I ran `./gradlew test` and after 10 minutes I had to kill it. I suppose that the added test just doesn't complete. Am...

The plugin may also manipulate the repositories declaration, and complete if needed :-) BTW JCenter always fetches from Maven Central when dependencies are missing. On Tue, Sep 11, 2018 at...

Seems like we need to wait for https://github.com/GoogleContainerTools/jib/issues/1004 right?

I've experienced before sporadic cases where the background job wasn't killed on redeployments, and we've had occasional reports like this.

vertxRun starts a job (JavaExec), it gets killed with a good old signal. On Wed, Jan 10, 2018 at 3:12 PM, Stefan Oehme wrote: > How do you start the...

We are just starting a JavaExec task with vertxRun: https://github.com/jponge/vertx-gradle-plugin/blob/master/src/main/kotlin/io/vertx/gradle/VertxPlugin.kt#L144 On Wed, Jan 10, 2018 at 3:26 PM, Stefan Oehme wrote: > Can you point me at the code where...