Skip to content

Commit

Permalink
Vert.x 5 Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
GedMarc committed Dec 19, 2024
1 parent 9b46051 commit c93c2b4
Showing 1 changed file with 21 additions and 8 deletions.
29 changes: 21 additions & 8 deletions Vert.x/vertx-core/src/moditect/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

exports io.vertx.ext.auth.authorization;
exports io.vertx.ext.auth.authentication;
exports io.vertx.core.cli.impl;
//exports io.vertx.core.cli.impl;

exports io.vertx.core;
exports io.vertx.core.buffer;
exports io.vertx.core.cli;
exports io.vertx.core.cli.annotations;
exports io.vertx.core.cli.converters;
//exports io.vertx.core.cli;
//exports io.vertx.core.cli.annotations;
//exports io.vertx.core.cli.converters;
exports io.vertx.core.datagram;
exports io.vertx.core.dns;
exports io.vertx.core.eventbus;
Expand All @@ -35,10 +35,10 @@
exports io.vertx.core.spi.context.storage;
exports io.vertx.core.spi.file;
exports io.vertx.core.spi.json;
exports io.vertx.core.spi.launcher;
//exports io.vertx.core.spi.launcher;
exports io.vertx.core.spi.metrics;
exports io.vertx.core.spi.observability;
exports io.vertx.core.spi.resolver;
//exports io.vertx.core.spi.resolver;
exports io.vertx.core.spi.tls;
exports io.vertx.core.spi.tracing;
exports io.vertx.core.spi.transport;
Expand All @@ -62,12 +62,25 @@

exports io.vertx.core.streams.impl to io.vertx.rabbitmq;

uses io.vertx.core.spi.launcher.CommandFactory;
//uses io.vertx.core.spi.launcher.CommandFactory;
uses reactor.blockhound.integration.BlockHoundIntegration;

uses io.vertx.core.spi.VertxServiceProvider;
uses io.vertx.core.spi.VerticleFactory;

opens io.vertx.core.impl.logging to io.vertx.rabbitmq;
provides reactor.blockhound.integration.BlockHoundIntegration with io.netty.util.internal.Hidden.NettyBlockHoundIntegration,
reactor.blockhound.integration.LoggingIntegration,
reactor.blockhound.integration.ReactorIntegration,
reactor.blockhound.integration.RxJava2Integration,
reactor.blockhound.integration.StandardOutputIntegration;

provides io.vertx.ext.auth.hashing.HashingAlgorithm with io.vertx.ext.auth.impl.hash.SHA1,
io.vertx.ext.auth.impl.hash.SHA256,
io.vertx.ext.auth.impl.hash.SHA512,
io.vertx.ext.auth.impl.hash.PBKDF2;

opens io.vertx.core.internal.logging to io.vertx.rabbitmq;

opens io.vertx.core.impl to io.vertx.rabbitmq;
exports io.vertx.core.internal to io.vertx.rabbitmq;
}

0 comments on commit c93c2b4

Please sign in to comment.