| 组织ID: |
io.vertx |
| 项目ID: |
vertx-core |
| 版本: |
3.0.0-dev_preview1 |
| 最后修改时间: |
2019-10-31 10:51:00 |
| 包类型: |
jar |
| 标题: |
Vert.x Core |
| 相关URL: |
https://oss.sonatype.org/content/repositories/releases |
| 大小: |
632.77KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>3.0.0-dev_preview1</version>
</dependency>
|
| Gradle引入代码: |
io.vertx:vertx-core:3.0.0-dev_preview1
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0"?>
<!--
~ Copyright (c) 2011-2014 The original author or authors
~
~ All rights reserved. This program and the accompanying materials
~ are made available under the terms of the Eclipse Public License v1.0
~ and Apache License v2.0 which accompanies this distribution.
~
~ The Eclipse Public License is available at
~ http://www.eclipse.org/legal/epl-v10.html
~
~ The Apache License v2.0 is available at
~ http://www.opensource.org/licenses/apache2.0.php
~
~ You may elect to redistribute this code under either of these licenses.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<repositories>
<repository>
<id>sonatype-nexus-releases</id>
<url>https://oss.sonatype.org/content/repositories/releases</url>
<layout>default</layout>
</repository>
<repository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<layout>default</layout>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
<parent>
<groupId>io.vertx</groupId>
<artifactId>vertx-parent</artifactId>
<version>3.0.0-dev_preview1</version>
</parent>
<artifactId>vertx-core</artifactId>
<version>3.0.0-dev_preview1</version>
<name>Vert.x Core</name>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
<license>
<name>Eclipse Public License - v 1.0</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:eclipse/vert.x.git</connection>
<developerConnection>scm:git:git@github.com:eclipse/vert.x.git</developerConnection>
<url>git@github.com:eclipse/vert.x.git</url>
</scm>
<properties>
<vertx.version>3.0.0-dev_preview1</vertx.version>
<netty.version>4.0.24.Final</netty.version>
<jackson.version>2.4.3</jackson.version>
<metrics.version>3.0.2</metrics.version>
<log4j.version>1.2.17</log4j.version>
<slf4j.version>1.7.7</slf4j.version>
<junit.version>4.11</junit.version>
<asciidoclet.version>1.5.1</asciidoclet.version>
<apacheds-protocol-dns.version>1.5.7</apacheds-protocol-dns.version>
<asciidoc.dir>${project.basedir}/src/main/asciidoc</asciidoc.dir>
</properties>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codegen</artifactId>
<version>${vertx.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-docgen</artifactId>
<version>${vertx.version}</version>
<optional>true</optional>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-protocol-dns</artifactId>
<version>${apacheds-protocol-dns.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<annotationProcessors>
<annotationProcessor>io.vertx.docgen.JavaDocGenProcessor</annotationProcessor>
<annotationProcessor>io.vertx.codegen.CodeGenProcessor</annotationProcessor>
</annotationProcessors>
<compilerArgs>
<arg>-Adocgen.output=${asciidoc.dir}</arg>
</compilerArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<configuration>
<source>${java.version}</source>
<doclet>org.asciidoctor.Asciidoclet</doclet>
<docletArtifact>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoclet</artifactId>
<version>${asciidoclet.version}</version>
</docletArtifact>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<configuration>
<failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
<excludes>
<exclude>**/RedeploySourceVerticle.java</exclude>
</excludes>
<additionalClasspathElements>
<additionalClasspathElement>${project.build.testSourceDirectory}</additionalClasspathElement>
</additionalClasspathElements>
<systemPropertyVariables>
<io.netty.leakDetectionLevel>PARANOID</io.netty.leakDetectionLevel>
<buildDirectory>${project.build.directory}</buildDirectory>
<vertxVersion>${project.version} </vertxVersion>
</systemPropertyVariables>
<!-- Needs to be small enough to run in a EC2 1.7GB small instance -->
<argLine>-Xmx1200M</argLine>
<forkCount>1</forkCount>
<reuseForks>true</reuseForks>
</configuration>
</plugin>
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>2.2.4</version>
<configuration>
<processors>
<processor>io.vertx.docgen.JavaDocGenProcessor</processor>
</processors>
<optionMap>
<docgen.output>${asciidoc.dir}</docgen.output>
</optionMap>
</configuration>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>1.5.0</version>
<configuration>
<sourceDirectory>${asciidoc.dir}</sourceDirectory>
<sourceDocumentName>index.adoc</sourceDocumentName>
<outputDirectory>${project.build.directory}/site</outputDirectory>
<backend>html</backend>
<doctype>book</doctype>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>default-clean</id>
<configuration>
<filesets>
<fileset>
<directory>${asciidoc.dir}</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- Plugin executions for the site phase -->
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>2.2.4</version>
<executions>
<!-- Run the annotation processor on vertx-core and generate the Asciidoctor files -->
<execution>
<id>generate-asciidoctor</id>
<goals>
<goal>process</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
<!-- Transform the Asciidoctor to html -->
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<goals>
<goal>process-asciidoc</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<phase>site</phase>
<goals>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/vertx-version.txt</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<excludes>
<exclude>**/vertx-version.txt</exclude>
</excludes>
</resource>
</resources>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
<reportSets>
<reportSet>
<reports>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
examples.package-info.class
examples.StreamsExamples.class
io.vertx.core.AbstractVerticle.class
io.vertx.core.AsyncResult.class
io.vertx.core.AsyncResultHandler.class
io.vertx.core.buffer.Buffer.class
io.vertx.core.buffer.impl.BufferFactoryImpl.class
io.vertx.core.buffer.impl.BufferImpl.class
io.vertx.core.Context.class
io.vertx.core.datagram.DatagramPacket.class
io.vertx.core.datagram.DatagramSocket.class
io.vertx.core.datagram.DatagramSocketOptions.class
io.vertx.core.datagram.impl.DatagramChannelFutureListener.class
io.vertx.core.datagram.impl.DatagramPacketImpl.class
io.vertx.core.datagram.impl.DatagramServerHandler.class
io.vertx.core.datagram.impl.DatagramSocketImpl$1.class
io.vertx.core.datagram.impl.DatagramSocketImpl.class
io.vertx.core.datagram.impl.InternetProtocolFamily.class
io.vertx.core.datagram.impl.PacketWriteStreamImpl.class
io.vertx.core.datagram.PacketWritestream.class
io.vertx.core.DeploymentOptions.class
io.vertx.core.dns.DnsClient.class
io.vertx.core.dns.DnsException.class
io.vertx.core.dns.DnsResponseCode.class
io.vertx.core.dns.impl.DnsClientImpl$1.class
io.vertx.core.dns.impl.DnsClientImpl$2.class
io.vertx.core.dns.impl.DnsClientImpl$3.class
io.vertx.core.dns.impl.DnsClientImpl$4.class
io.vertx.core.dns.impl.DnsClientImpl$5$1$1.class
io.vertx.core.dns.impl.DnsClientImpl$5$1.class
io.vertx.core.dns.impl.DnsClientImpl$5.class
io.vertx.core.dns.impl.DnsClientImpl$ConvertingHandler.class
io.vertx.core.dns.impl.DnsClientImpl$HandlerAdapter.class
io.vertx.core.dns.impl.DnsClientImpl$RetryChannelFutureListener.class
io.vertx.core.dns.impl.DnsClientImpl.class
io.vertx.core.dns.impl.MxRecordComparator.class
io.vertx.core.dns.impl.MxRecordImpl.class
io.vertx.core.dns.impl.netty.decoder.AddressDecoder.class
io.vertx.core.dns.impl.netty.decoder.DomainDecoder.class
io.vertx.core.dns.impl.netty.decoder.MailExchangerDecoder.class
io.vertx.core.dns.impl.netty.decoder.record.MailExchangerRecord.class
io.vertx.core.dns.impl.netty.decoder.record.ServiceRecord.class
io.vertx.core.dns.impl.netty.decoder.record.StartOfAuthorityRecord.class
io.vertx.core.dns.impl.netty.decoder.RecordDecoder.class
io.vertx.core.dns.impl.netty.decoder.RecordDecoderFactory.class
io.vertx.core.dns.impl.netty.decoder.ServiceDecoder.class
io.vertx.core.dns.impl.netty.decoder.StartOfAuthorityDecoder.class
io.vertx.core.dns.impl.netty.decoder.TextDecoder.class
io.vertx.core.dns.impl.netty.DnsEntry.class
io.vertx.core.dns.impl.netty.DnsHeader.class
io.vertx.core.dns.impl.netty.DnsMessage.class
io.vertx.core.dns.impl.netty.DnsQuery.class
io.vertx.core.dns.impl.netty.DnsQueryEncoder.class
io.vertx.core.dns.impl.netty.DnsQueryHeader.class
io.vertx.core.dns.impl.netty.DnsQuestion.class
io.vertx.core.dns.impl.netty.DnsResource.class
io.vertx.core.dns.impl.netty.DnsResponse.class
io.vertx.core.dns.impl.netty.DnsResponseCode.class
io.vertx.core.dns.impl.netty.DnsResponseDecoder.class
io.vertx.core.dns.impl.netty.DnsResponseHeader.class
io.vertx.core.dns.impl.SrcRecordImpl.class
io.vertx.core.dns.impl.SrvRecordComparator.class
io.vertx.core.dns.MxRecord.class
io.vertx.core.dns.SrvRecord.class
io.vertx.core.eventbus.DeliveryOptions.class
io.vertx.core.eventbus.EventBus.class
io.vertx.core.eventbus.impl.BodyReadStream.class
io.vertx.core.eventbus.impl.codecs.BooleanMessageCodec.class
io.vertx.core.eventbus.impl.codecs.BufferMessageCodec.class
io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec.class
io.vertx.core.eventbus.impl.codecs.ByteMessageCodec.class
io.vertx.core.eventbus.impl.codecs.CharMessageCodec.class
io.vertx.core.eventbus.impl.codecs.DoubleMessageCodec.class
io.vertx.core.eventbus.impl.codecs.FloatMessageCodec.class
io.vertx.core.eventbus.impl.codecs.IntMessageCodec.class
io.vertx.core.eventbus.impl.codecs.JsonArrayMessageCodec.class
io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec.class
io.vertx.core.eventbus.impl.codecs.LongMessageCodec.class
io.vertx.core.eventbus.impl.codecs.NullMessageCodec.class
io.vertx.core.eventbus.impl.codecs.PingMessageCodec.class
io.vertx.core.eventbus.impl.codecs.ReplyExceptionMessageCodec.class
io.vertx.core.eventbus.impl.codecs.ShortMessageCodec.class
io.vertx.core.eventbus.impl.codecs.StringMessageCodec.class
io.vertx.core.eventbus.impl.EventBusImpl$1.class
io.vertx.core.eventbus.impl.EventBusImpl$2.class
io.vertx.core.eventbus.impl.EventBusImpl$ConnectionHolder.class
io.vertx.core.eventbus.impl.EventBusImpl$EventBusNetServer.class
io.vertx.core.eventbus.impl.EventBusImpl$HandlerEntry.class
io.vertx.core.eventbus.impl.EventBusImpl$HandlerHolder.class
io.vertx.core.eventbus.impl.EventBusImpl$HandlerRegistration.class
io.vertx.core.eventbus.impl.EventBusImpl$Handlers.class
io.vertx.core.eventbus.impl.EventBusImpl.class
io.vertx.core.eventbus.impl.MessageImpl.class
io.vertx.core.eventbus.impl.MessageProducerImpl.class
io.vertx.core.eventbus.Message.class
io.vertx.core.eventbus.MessageCodec.class
io.vertx.core.eventbus.MessageConsumer.class
io.vertx.core.eventbus.MessageProducer.class
io.vertx.core.eventbus.ReplyException.class
io.vertx.core.eventbus.ReplyFailure$1.class
io.vertx.core.eventbus.ReplyFailure.class
io.vertx.core.file.AsyncFile.class
io.vertx.core.file.FileProps.class
io.vertx.core.file.FileSystem.class
io.vertx.core.file.FileSystemException.class
io.vertx.core.file.FileSystemProps.class
io.vertx.core.file.impl.AsyncFileImpl$1.class
io.vertx.core.file.impl.AsyncFileImpl$2.class
io.vertx.core.file.impl.AsyncFileImpl.class
io.vertx.core.file.impl.FilePropsImpl.class
io.vertx.core.file.impl.FileSystemImpl$1$1.class
io.vertx.core.file.impl.FileSystemImpl$1.class
io.vertx.core.file.impl.FileSystemImpl$10.class
io.vertx.core.file.impl.FileSystemImpl$11$1.class
io.vertx.core.file.impl.FileSystemImpl$11.class
io.vertx.core.file.impl.FileSystemImpl$12.class
io.vertx.core.file.impl.FileSystemImpl$13.class
io.vertx.core.file.impl.FileSystemImpl$14.class
io.vertx.core.file.impl.FileSystemImpl$15.class
io.vertx.core.file.impl.FileSystemImpl$16.class
io.vertx.core.file.impl.FileSystemImpl$17.class
io.vertx.core.file.impl.FileSystemImpl$2.class
io.vertx.core.file.impl.FileSystemImpl$3.class
io.vertx.core.file.impl.FileSystemImpl$4$1.class
io.vertx.core.file.impl.FileSystemImpl$4.class
io.vertx.core.file.impl.FileSystemImpl$5.class
io.vertx.core.file.impl.FileSystemImpl$6.class
io.vertx.core.file.impl.FileSystemImpl$7.class
io.vertx.core.file.impl.FileSystemImpl$8.class
io.vertx.core.file.impl.FileSystemImpl$9$1.class
io.vertx.core.file.impl.FileSystemImpl$9.class
io.vertx.core.file.impl.FileSystemImpl$BlockingAction.class
io.vertx.core.file.impl.FileSystemImpl.class
io.vertx.core.file.impl.FileSystemPropsImpl.class
io.vertx.core.file.impl.WindowsFileSystem$1.class
io.vertx.core.file.impl.WindowsFileSystem.class
io.vertx.core.file.OpenOptions.class
io.vertx.core.Future.class
io.vertx.core.Handler.class
io.vertx.core.http.CaseInsensitiveHeaders$MapEntry.class
io.vertx.core.http.CaseInsensitiveHeaders.class
io.vertx.core.http.HttpClient.class
io.vertx.core.http.HttpClientOptions.class
io.vertx.core.http.HttpClientRequest.class
io.vertx.core.http.HttpClientResponse.class
io.vertx.core.http.HttpHeaders.class
io.vertx.core.http.HttpMethod.class
io.vertx.core.http.HttpServer.class
io.vertx.core.http.HttpServerFileUpload.class
io.vertx.core.http.HttpServerOptions.class
io.vertx.core.http.HttpServerRequest.class
io.vertx.core.http.HttpServerRequestStream.class
io.vertx.core.http.HttpServerResponse.class
io.vertx.core.http.HttpVersion.class
io.vertx.core.http.impl.AssembledFullHttpRequest.class
io.vertx.core.http.impl.AssembledFullHttpResponse.class
io.vertx.core.http.impl.AssembledHttpRequest.class
io.vertx.core.http.impl.AssembledHttpResponse.class
io.vertx.core.http.impl.AssembledLastHttpContent.class
io.vertx.core.http.impl.cgbystrom.FlashPolicyHandler$1.class
io.vertx.core.http.impl.cgbystrom.FlashPolicyHandler$ParseState.class
io.vertx.core.http.impl.cgbystrom.FlashPolicyHandler.class
io.vertx.core.http.impl.ClientConnection$1.class
io.vertx.core.http.impl.ClientConnection$HandshakeInboundHandler.class
io.vertx.core.http.impl.ClientConnection.class
io.vertx.core.http.impl.ConnectionLifeCycleListener.class
io.vertx.core.http.impl.ConnectionManager$1.class
io.vertx.core.http.impl.ConnectionManager$ConnQueue.class
io.vertx.core.http.impl.ConnectionManager$TargetAddress.class
io.vertx.core.http.impl.ConnectionManager$Waiter.class
io.vertx.core.http.impl.ConnectionManager.class
io.vertx.core.http.impl.FrameType.class
io.vertx.core.http.impl.HeadersAdaptor.class
io.vertx.core.http.impl.HttpChunkContentCompressor.class
io.vertx.core.http.impl.HttpClientImpl$1.class
io.vertx.core.http.impl.HttpClientImpl$2.class
io.vertx.core.http.impl.HttpClientImpl$3.class
io.vertx.core.http.impl.HttpClientImpl$ClientHandler.class
io.vertx.core.http.impl.HttpClientImpl$WebSocketStreamImpl.class
io.vertx.core.http.impl.HttpClientImpl.class
io.vertx.core.http.impl.HttpClientRequestImpl$1.class
io.vertx.core.http.impl.HttpClientRequestImpl$2.class
io.vertx.core.http.impl.HttpClientRequestImpl.class
io.vertx.core.http.impl.HttpClientResponseImpl$1.class
io.vertx.core.http.impl.HttpClientResponseImpl$2.class
io.vertx.core.http.impl.HttpClientResponseImpl$3.class
io.vertx.core.http.impl.HttpClientResponseImpl$BodyHandler.class
io.vertx.core.http.impl.HttpClientResponseImpl.class
io.vertx.core.http.impl.HttpServerFileUploadImpl.class
io.vertx.core.http.impl.HttpServerImpl$1.class
io.vertx.core.http.impl.HttpServerImpl$2.class
io.vertx.core.http.impl.HttpServerImpl$3.class
io.vertx.core.http.impl.HttpServerImpl$HttpServerRequestStreamImpl.class
io.vertx.core.http.impl.HttpServerImpl$HttpStreamHandler.class
io.vertx.core.http.impl.HttpServerImpl$ServerHandler.class
io.vertx.core.http.impl.HttpServerImpl$ServerWebSocketStreamImpl.class
io.vertx.core.http.impl.HttpServerImpl.class
io.vertx.core.http.impl.HttpServerRequestImpl$1.class
io.vertx.core.http.impl.HttpServerRequestImpl$DataFactory.class
io.vertx.core.http.impl.HttpServerRequestImpl$NettyFileUpload.class
io.vertx.core.http.impl.HttpServerRequestImpl.class
io.vertx.core.http.impl.HttpServerResponseImpl.class
io.vertx.core.http.impl.MimeMapping.class
io.vertx.core.http.impl.ServerConnection$1.class
io.vertx.core.http.impl.ServerConnection$2.class
io.vertx.core.http.impl.ServerConnection$3.class
io.vertx.core.http.impl.ServerConnection.class
io.vertx.core.http.impl.ServerWebSocketImpl.class
io.vertx.core.http.impl.UriParser.class
io.vertx.core.http.impl.VertxHttpHandler$1.class
io.vertx.core.http.impl.VertxHttpHandler.class
io.vertx.core.http.impl.VertxHttpResponseEncoder.class
io.vertx.core.http.impl.WebSocketFrameFactoryImpl.class
io.vertx.core.http.impl.WebSocketImpl.class
io.vertx.core.http.impl.WebSocketImplBase.class
io.vertx.core.http.impl.WebSocketMatcher$1.class
io.vertx.core.http.impl.WebSocketMatcher$Match.class
io.vertx.core.http.impl.WebSocketMatcher$PatternBinding.class
io.vertx.core.http.impl.WebSocketMatcher.class
io.vertx.core.http.impl.ws.WebSocketFrameImpl.class
io.vertx.core.http.impl.ws.WebSocketFrameInternal.class
io.vertx.core.http.ServerWebSocket.class
io.vertx.core.http.ServerWebSocketStream.class
io.vertx.core.http.WebSocket.class
io.vertx.core.http.WebSocketBase.class
io.vertx.core.http.WebSocketFrame.class
io.vertx.core.http.WebSocketStream.class
io.vertx.core.http.WebsocketVersion.class
io.vertx.core.impl.Args.class
io.vertx.core.impl.Arguments.class
io.vertx.core.impl.BlockedThreadChecker$1.class
io.vertx.core.impl.BlockedThreadChecker.class
io.vertx.core.impl.Closeable.class
io.vertx.core.impl.ConcurrentHashSet.class
io.vertx.core.impl.ContextImpl.class
io.vertx.core.impl.ContextTask.class
io.vertx.core.impl.Deployment.class
io.vertx.core.impl.DeploymentManager$1.class
io.vertx.core.impl.DeploymentManager$DeploymentImpl.class
io.vertx.core.impl.DeploymentManager$VerticleHolder.class
io.vertx.core.impl.DeploymentManager.class
io.vertx.core.impl.EventLoopContext.class
io.vertx.core.impl.FileResolver.class
io.vertx.core.impl.FutureFactoryImpl.class
io.vertx.core.impl.FutureImpl.class
io.vertx.core.impl.HAManager$1.class
io.vertx.core.impl.HAManager$2.class
io.vertx.core.impl.HAManager$3.class
io.vertx.core.impl.HAManager$4$1.class
io.vertx.core.impl.HAManager$4.class
io.vertx.core.impl.HAManager.class
io.vertx.core.impl.IsolatingClassLoader.class
io.vertx.core.impl.JavaVerticleFactory.class
io.vertx.core.impl.MultiThreadedWorkerContext.class
io.vertx.core.impl.NoStackTraceThrowable.class
io.vertx.core.impl.OrderedExecutorFactory$OrderedExecutor.class
io.vertx.core.impl.OrderedExecutorFactory.class
io.vertx.core.impl.Redeployer$1.class
io.vertx.core.impl.Redeployer$FileInfo.class
io.vertx.core.impl.Redeployer.class
io.vertx.core.impl.StringEscapeUtils.class
io.vertx.core.impl.verticle.CompilingClassLoader.class
io.vertx.core.impl.verticle.CustomJavaFileObject.class
io.vertx.core.impl.verticle.JavaSourceContext.class
io.vertx.core.impl.verticle.MemoryFileManager$1.class
io.vertx.core.impl.verticle.MemoryFileManager.class
io.vertx.core.impl.verticle.PackageHelper.class
io.vertx.core.impl.VertxFactoryImpl.class
io.vertx.core.impl.VertxImpl$InternalTimerHandler.class
io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.class
io.vertx.core.impl.VertxImpl.class
io.vertx.core.impl.VertxInternal.class
io.vertx.core.impl.VertxThread.class
io.vertx.core.impl.VertxThreadFactory.class
io.vertx.core.impl.Windows.class
io.vertx.core.impl.WorkerContext.class
io.vertx.core.json.DecodeException.class
io.vertx.core.json.EncodeException.class
io.vertx.core.json.impl.Json$1.class
io.vertx.core.json.impl.Json$JsonArraySerializer.class
io.vertx.core.json.impl.Json$JsonObjectSerializer.class
io.vertx.core.json.impl.Json.class
io.vertx.core.json.JsonArray$Iter.class
io.vertx.core.json.JsonArray.class
io.vertx.core.json.JsonObject$Iter.class
io.vertx.core.json.JsonObject.class
io.vertx.core.logging.impl.JULLogDelegate.class
io.vertx.core.logging.impl.JULLogDelegateFactory.class
io.vertx.core.logging.impl.Log4jLogDelegate.class
io.vertx.core.logging.impl.Log4jLogDelegateFactory.class
io.vertx.core.logging.impl.LogDelegate.class
io.vertx.core.logging.impl.LogDelegateFactory.class
io.vertx.core.logging.impl.LoggerFactory.class
io.vertx.core.logging.impl.SLF4JLogDelegate.class
io.vertx.core.logging.impl.SLF4JLogDelegateFactory.class
io.vertx.core.logging.impl.VertxLoggerFormatter.class
io.vertx.core.logging.Logger.class
io.vertx.core.metrics.impl.DummyVertxMetrics$DummyDatagramMetrics.class
io.vertx.core.metrics.impl.DummyVertxMetrics$DummyEventBusMetrics.class
io.vertx.core.metrics.impl.DummyVertxMetrics$DummyHttpClientMetrics.class
io.vertx.core.metrics.impl.DummyVertxMetrics$DummyHttpServerMetrics.class
io.vertx.core.metrics.impl.DummyVertxMetrics$DummyNetMetrics.class
io.vertx.core.metrics.impl.DummyVertxMetrics.class
io.vertx.core.metrics.Measured.class
io.vertx.core.metrics.spi.BaseMetrics.class
io.vertx.core.metrics.spi.DatagramSocketMetrics.class
io.vertx.core.metrics.spi.EventBusMetrics.class
io.vertx.core.metrics.spi.HttpClientMetrics.class
io.vertx.core.metrics.spi.HttpServerMetrics.class
io.vertx.core.metrics.spi.NetMetrics.class
io.vertx.core.metrics.spi.VertxMetrics.class
io.vertx.core.MultiMap.class
io.vertx.core.net.CaOptions.class
io.vertx.core.net.ClientOptionsBase.class
io.vertx.core.net.impl.ConnectionBase.class
io.vertx.core.net.impl.HandlerHolder.class
io.vertx.core.net.impl.HandlerManager$1.class
io.vertx.core.net.impl.HandlerManager$Handlers.class
io.vertx.core.net.impl.HandlerManager.class
io.vertx.core.net.impl.KeyStoreHelper$CA.class
io.vertx.core.net.impl.KeyStoreHelper$JKSOrPKCS12.class
io.vertx.core.net.impl.KeyStoreHelper$KeyCert.class
io.vertx.core.net.impl.KeyStoreHelper.class
io.vertx.core.net.impl.NetClientImpl$1.class
io.vertx.core.net.impl.NetClientImpl.class
io.vertx.core.net.impl.NetServerImpl$1.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
netty-all-${netty.version}.jar
/io.netty/netty-all/${netty.version}
查看netty-all所有版本文件
jackson-core-${jackson.version}.jar
/com.fasterxml.jackson.core/jackson-core/${jackson.version}
查看jackson-core所有版本文件
jackson-databind-${jackson.version}.jar
/com.fasterxml.jackson.core/jackson-databind/${jackson.version}
查看jackson-databind所有版本文件
log4j-${log4j.version}.jar
/log4j/log4j/${log4j.version}
查看log4j所有版本文件
slf4j-api-${slf4j.version}.jar
/org.slf4j/slf4j-api/${slf4j.version}
查看slf4j-api所有版本文件
vertx-codegen-${vertx.version}.jar
/io.vertx/vertx-codegen/${vertx.version}
查看vertx-codegen所有版本文件
vertx-docgen-${vertx.version}.jar
/io.vertx/vertx-docgen/${vertx.version}
查看vertx-docgen所有版本文件
junit-${junit.version}.jar
/junit/junit/${junit.version}
查看junit所有版本文件
apacheds-protocol-dns-${apacheds-protocol-dns.version}.jar
/org.apache.directory.server/apacheds-protocol-dns/${apacheds-protocol-dns.version}
查看apacheds-protocol-dns所有版本文件
|