vertx-gradle-plugin
vertx-gradle-plugin copied to clipboard
An opinionated Gradle plugin for Vert.x projects
When running the `shadowJar` task, it fails with the following error:  Here is my `build.gradle` ```groovy plugins { id 'io.vertx.vertx-plugin' version '1.3.0' } repositories { mavenCentral() } def vertxVersion...
Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) Commits c6bdaca Version 2.6.4 8870da9 Update built files 4df6754 update changelog 8f7f903...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Bumps [axios](https://github.com/axios/axios) from 0.21.1 to 0.21.2. Release notes Sourced from axios's releases. v0.21.2 0.21.2 (September 4, 2021) Fixes and Functionality: Updating axios requests to be delayed by pre-emptive promise creation...
Updates `shadow` to [7.1.0](https://imperceptiblethoughts.com/shadow/changes/#v7-1-0-2021-10-04). This upgrade may not be acceptable as it requires Gradle 7.0+. A workaround for those that want to use shadow 7.1.0 with this plugin, but cannot...
Hi, I have the following in `build.gradle`: ``` vertx { mainVerticle = 'com.sample.SampleService' } vertxDebug { jvmArgs = ['-Dvertx.logger-delegate-factory-class-name=io.vertx.core.logging.SLF4JLogDelegateFactory'] } vertxRun { jvmArgs = ['-Dvertx.logger-delegate-factory-class-name=io.vertx.core.logging.SLF4JLogDelegateFactory'] } ``` When I use...
Looks like I have to manually specify the version for this one: compile group: 'io.vertx', name: 'vertx-rx-java2-gen' Would be nice to add this to the list of libraries supported by...
I noticed this when using the plugin version 0.5.0, which uses Vert.x 3.7.0 by default. In that particular version, BodyCodecImpl.java from vertx.web.common and the interface it references: WriteStream.java from vertx-core-3.7.0.jar,...
With a release of Kotlin 1.3 and improved support for multiplatform projects in Gradle, there were some changes in directory structures that should be considered by the plugin. * [Official](https://kotlinlang.org/docs/reference/coding-conventions.html#directory-structure)...
A proposal for #18 It simply works (i used the `openjdk:8-jdk-alpine` as default image). My concerns with jib: - According to their [FAQ](https://github.com/GoogleContainerTools/jib/blob/master/docs/faq.md#can-i-build-to-a-local-docker-daemon) the local build requires a weird `docker...