|
@@ -14,10 +14,9 @@ muzzle {
|
|
|
dependencies {
|
|
|
library("io.vertx:vertx-core:3.0.0")
|
|
|
|
|
|
- compileOnly("io.vertx:vertx-codegen:3.0.0")
|
|
|
- testCompileOnly("io.vertx:vertx-codegen:3.0.0")
|
|
|
- compileOnly("io.vertx:vertx-docgen:3.0.0")
|
|
|
- testCompileOnly("io.vertx:vertx-docgen:3.0.0")
|
|
|
+ // vertx-codegen and vertx-docgen dependencies are needed for Xlint's annotation checking
|
|
|
+ library("io.vertx:vertx-codegen:3.0.0")
|
|
|
+ testLibrary("io.vertx:vertx-docgen:3.0.0")
|
|
|
|
|
|
compileOnly("com.google.auto.value:auto-value-annotations")
|
|
|
annotationProcessor("com.google.auto.value:auto-value")
|
|
@@ -32,6 +31,8 @@ dependencies {
|
|
|
// 3.9.7 Requires Netty 4.1.60, no other version works with it.
|
|
|
latestDepTestLibrary(enforcedPlatform("io.netty:netty-bom:4.1.60.Final"))
|
|
|
latestDepTestLibrary("io.vertx:vertx-core:3.+")
|
|
|
+ latestDepTestLibrary("io.vertx:vertx-codegen:3.+")
|
|
|
+ latestDepTestLibrary("io.vertx:vertx-docgen:3.+")
|
|
|
}
|
|
|
|
|
|
tasks {
|