Skip to content

Commit f743143

Browse files
authored
Fix vertx failures in the maven plugin (#5685)
1 parent 9db4169 commit f743143

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

utils/maven-plugin/src/main/java/io/apicurio/registry/maven/AbstractRegistryMojo.java

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
import io.apicurio.registry.types.ContentTypes;
66
import io.kiota.http.vertx.VertXRequestAdapter;
77
import io.vertx.core.Vertx;
8+
import io.vertx.core.VertxOptions;
9+
import io.vertx.core.file.FileSystemOptions;
810
import io.vertx.ext.web.client.WebClient;
911
import org.apache.maven.plugin.AbstractMojo;
1012
import org.apache.maven.plugin.MojoExecutionException;
@@ -43,6 +45,15 @@ public abstract class AbstractRegistryMojo extends AbstractMojo {
4345
@Parameter(property = "password")
4446
String password;
4547

48+
protected Vertx createVertx() {
49+
var options = new VertxOptions();
50+
var fsOpts = new FileSystemOptions();
51+
fsOpts.setFileCachingEnabled(false);
52+
fsOpts.setClassPathResolvingEnabled(false);
53+
options.setFileSystemOptions(fsOpts);
54+
return Vertx.vertx(options);
55+
}
56+
4657
protected RegistryClient createClient(Vertx vertx) {
4758
WebClient provider = null;
4859
if (authServerUrl != null && clientId != null && clientSecret != null) {

utils/maven-plugin/src/main/java/io/apicurio/registry/maven/DownloadRegistryMojo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected void validate() throws MojoExecutionException {
7676
protected void executeInternal() throws MojoExecutionException, ExecutionException, InterruptedException {
7777
validate();
7878

79-
Vertx vertx = Vertx.vertx();
79+
Vertx vertx = createVertx();
8080
RegistryClient registryClient = createClient(vertx);
8181

8282
try {

utils/maven-plugin/src/main/java/io/apicurio/registry/maven/RegisterRegistryMojo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ protected boolean validate() throws MojoExecutionException {
125125
protected void executeInternal() throws MojoExecutionException {
126126
int errorCount = 0;
127127
if (validate()) {
128-
Vertx vertx = Vertx.vertx();
128+
Vertx vertx = createVertx();
129129
RegistryClient registryClient = createClient(vertx);
130130

131131
for (RegisterArtifact artifact : artifacts) {

utils/maven-plugin/src/main/java/io/apicurio/registry/maven/TestUpdateRegistryMojo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ protected void validate() throws MojoExecutionException {
7171
@Override
7272
protected void executeInternal() throws MojoExecutionException {
7373
validate();
74-
Vertx vertx = Vertx.vertx();
74+
Vertx vertx = createVertx();
7575
RegistryClient registryClient = createClient(vertx);
7676

7777
try {

0 commit comments

Comments
 (0)