| 组织ID: |
io.vertx |
| 项目ID: |
vertx-web |
| 版本: |
3.0.0 |
| 最后修改时间: |
2018-07-26 10:12:30 |
| 包类型: |
jar |
| 大小: |
483.93KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web</artifactId>
<version>3.0.0</version>
</dependency>
|
| Gradle引入代码: |
io.vertx:vertx-web:3.0.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>io.vertx</groupId>
<artifactId>vertx-ext-parent</artifactId>
<version>14</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>vertx-web</artifactId>
<version>3.0.0</version>
<properties>
<stack.version>3.0.0</stack.version>
<pac4j.version>1.6.0</pac4j.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-dependencies</artifactId>
<version>${stack.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codegen</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-docgen</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codetrans</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-groovy</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-ruby</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-js</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-rx-java</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-auth-common</artifactId>
</dependency>
<!--
These should be optional so they're not dragged into web applications unless they're explicitly declared
-->
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-auth-jwt</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>2.1.2.RELEASE</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.github.jknack</groupId>
<artifactId>handlebars</artifactId>
<version>1.3.0</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>de.neuland-bfi</groupId>
<artifactId>jade4j</artifactId>
<version>0.4.0</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<version>2.2.0.Final</version>
<optional>true</optional>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-auth-shiro</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-hazelcast</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
<version>3.4</version>
<exclusions>
<exclusion>
<groupId>net.sourceforge.findbugs</groupId>
<artifactId>annotations</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<configuration>
<excludes>
<exclude>**/HazelcastClusteredSessionHandlerTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${basedir}/src/client/vertxbus.js</file>
<classifier>client</classifier>
<type>js</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- Run clustering tests using Hazelcast instead of FakeClusterManager -->
<id>hazelcast-tests</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/HazelcastClusteredSessionHandlerTest.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- Disable SockJS protocol tests on CI as CI doesn't like python stuff -->
<id>CI-tests</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/SockJSProtocolTest.java</exclude>
<exclude>**/HazelcastClusteredSessionHandlerTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
io.vertx.ext.web.Cookie.class
io.vertx.ext.web.FileUpload.class
io.vertx.ext.web.handler.AuthHandler.class
io.vertx.ext.web.handler.BasicAuthHandler.class
io.vertx.ext.web.handler.BodyHandler.class
io.vertx.ext.web.handler.CookieHandler.class
io.vertx.ext.web.handler.CorsHandler.class
io.vertx.ext.web.handler.ErrorHandler.class
io.vertx.ext.web.handler.FaviconHandler.class
io.vertx.ext.web.handler.FormLoginHandler.class
io.vertx.ext.web.handler.impl.AuthHandlerImpl.class
io.vertx.ext.web.handler.impl.BasicAuthHandlerImpl.class
io.vertx.ext.web.handler.impl.BodyHandlerImpl$1.class
io.vertx.ext.web.handler.impl.BodyHandlerImpl$BHandler.class
io.vertx.ext.web.handler.impl.BodyHandlerImpl.class
io.vertx.ext.web.handler.impl.CookieHandlerImpl.class
io.vertx.ext.web.handler.impl.CorsHandlerImpl.class
io.vertx.ext.web.handler.impl.ErrorHandlerImpl.class
io.vertx.ext.web.handler.impl.FaviconHandlerImpl$1.class
io.vertx.ext.web.handler.impl.FaviconHandlerImpl$Icon.class
io.vertx.ext.web.handler.impl.FaviconHandlerImpl.class
io.vertx.ext.web.handler.impl.FormLoginHandlerImpl.class
io.vertx.ext.web.handler.impl.JWTAuthHandlerImpl.class
io.vertx.ext.web.handler.impl.LoggerHandlerImpl$1.class
io.vertx.ext.web.handler.impl.LoggerHandlerImpl.class
io.vertx.ext.web.handler.impl.RedirectAuthHandlerImpl.class
io.vertx.ext.web.handler.impl.ResponseTimeHandlerImpl.class
io.vertx.ext.web.handler.impl.SessionHandlerImpl.class
io.vertx.ext.web.handler.impl.StaticHandlerImpl$1.class
io.vertx.ext.web.handler.impl.StaticHandlerImpl$CacheEntry.class
io.vertx.ext.web.handler.impl.StaticHandlerImpl.class
io.vertx.ext.web.handler.impl.TemplateHandlerImpl.class
io.vertx.ext.web.handler.impl.TimeoutHandlerImpl.class
io.vertx.ext.web.handler.impl.UserHolder.class
io.vertx.ext.web.handler.impl.UserSessionHandlerImpl.class
io.vertx.ext.web.handler.JWTAuthHandler.class
io.vertx.ext.web.handler.LoggerHandler$Format.class
io.vertx.ext.web.handler.LoggerHandler.class
io.vertx.ext.web.handler.RedirectAuthHandler.class
io.vertx.ext.web.handler.ResponseTimeHandler.class
io.vertx.ext.web.handler.SessionHandler.class
io.vertx.ext.web.handler.sockjs.BridgeEvent$Type.class
io.vertx.ext.web.handler.sockjs.BridgeEvent.class
io.vertx.ext.web.handler.sockjs.BridgeOptions.class
io.vertx.ext.web.handler.sockjs.impl.BaseTransport$1.class
io.vertx.ext.web.handler.sockjs.impl.BaseTransport$BaseListener$1.class
io.vertx.ext.web.handler.sockjs.impl.BaseTransport$BaseListener.class
io.vertx.ext.web.handler.sockjs.impl.BaseTransport.class
io.vertx.ext.web.handler.sockjs.impl.BridgeEventImpl.class
io.vertx.ext.web.handler.sockjs.impl.EventBusBridgeImpl$1.class
io.vertx.ext.web.handler.sockjs.impl.EventBusBridgeImpl$Match.class
io.vertx.ext.web.handler.sockjs.impl.EventBusBridgeImpl$PingInfo.class
io.vertx.ext.web.handler.sockjs.impl.EventBusBridgeImpl$SockInfo.class
io.vertx.ext.web.handler.sockjs.impl.EventBusBridgeImpl.class
io.vertx.ext.web.handler.sockjs.impl.EventSourceTransport$EventSourceListener.class
io.vertx.ext.web.handler.sockjs.impl.EventSourceTransport.class
io.vertx.ext.web.handler.sockjs.impl.HtmlFileTransport$HtmlFileListener.class
io.vertx.ext.web.handler.sockjs.impl.HtmlFileTransport.class
io.vertx.ext.web.handler.sockjs.impl.JsonCodec$1.class
io.vertx.ext.web.handler.sockjs.impl.JsonCodec.class
io.vertx.ext.web.handler.sockjs.impl.JsonPTransport$JsonPListener.class
io.vertx.ext.web.handler.sockjs.impl.JsonPTransport.class
io.vertx.ext.web.handler.sockjs.impl.RawWebSocketTransport$RawWSSockJSSocket.class
io.vertx.ext.web.handler.sockjs.impl.RawWebSocketTransport.class
io.vertx.ext.web.handler.sockjs.impl.SockJSHandlerImpl$1$TimeoutInfo.class
io.vertx.ext.web.handler.sockjs.impl.SockJSHandlerImpl$1.class
io.vertx.ext.web.handler.sockjs.impl.SockJSHandlerImpl$2$1.class
io.vertx.ext.web.handler.sockjs.impl.SockJSHandlerImpl$2.class
io.vertx.ext.web.handler.sockjs.impl.SockJSHandlerImpl.class
io.vertx.ext.web.handler.sockjs.impl.SockJSSession$1.class
io.vertx.ext.web.handler.sockjs.impl.SockJSSession.class
io.vertx.ext.web.handler.sockjs.impl.SockJSSocketBase.class
io.vertx.ext.web.handler.sockjs.impl.TransportListener.class
io.vertx.ext.web.handler.sockjs.impl.WebSocketTransport$WebSocketListener.class
io.vertx.ext.web.handler.sockjs.impl.WebSocketTransport.class
io.vertx.ext.web.handler.sockjs.impl.XhrTransport$BaseXhrListener.class
io.vertx.ext.web.handler.sockjs.impl.XhrTransport$XhrPollingListener.class
io.vertx.ext.web.handler.sockjs.impl.XhrTransport$XhrStreamingListener.class
io.vertx.ext.web.handler.sockjs.impl.XhrTransport.class
io.vertx.ext.web.handler.sockjs.PermittedOptions.class
io.vertx.ext.web.handler.sockjs.SockJSHandler.class
io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions.class
io.vertx.ext.web.handler.sockjs.SockJSSocket.class
io.vertx.ext.web.handler.sockjs.Transport.class
io.vertx.ext.web.handler.StaticHandler.class
io.vertx.ext.web.handler.TemplateHandler.class
io.vertx.ext.web.handler.TimeoutHandler.class
io.vertx.ext.web.handler.UserSessionHandler.class
io.vertx.ext.web.impl.BlockingHandlerDecorator.class
io.vertx.ext.web.impl.ConcurrentLRUCache.class
io.vertx.ext.web.impl.CookieImpl.class
io.vertx.ext.web.impl.FileUploadImpl.class
io.vertx.ext.web.impl.LRUCache.class
io.vertx.ext.web.impl.RouteImpl.class
io.vertx.ext.web.impl.RouterImpl.class
io.vertx.ext.web.impl.RoutingContextDecorator.class
io.vertx.ext.web.impl.RoutingContextImpl.class
io.vertx.ext.web.impl.RoutingContextImplBase.class
io.vertx.ext.web.impl.RoutingContextWrapper.class
io.vertx.ext.web.impl.Utils$1.class
io.vertx.ext.web.impl.Utils.class
io.vertx.ext.web.package-info.class
io.vertx.ext.web.Route.class
io.vertx.ext.web.Router.class
io.vertx.ext.web.RoutingContext.class
io.vertx.ext.web.Session.class
io.vertx.ext.web.sstore.ClusteredSessionStore.class
io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.class
io.vertx.ext.web.sstore.impl.LocalSessionStoreImpl.class
io.vertx.ext.web.sstore.impl.SessionImpl.class
io.vertx.ext.web.sstore.LocalSessionStore.class
io.vertx.ext.web.sstore.SessionStore.class
io.vertx.ext.web.templ.HandlebarsTemplateEngine.class
io.vertx.ext.web.templ.impl.CachingTemplateEngine.class
io.vertx.ext.web.templ.impl.HandlebarsTemplateEngineImpl$1.class
io.vertx.ext.web.templ.impl.HandlebarsTemplateEngineImpl$Loader$1.class
io.vertx.ext.web.templ.impl.HandlebarsTemplateEngineImpl$Loader.class
io.vertx.ext.web.templ.impl.HandlebarsTemplateEngineImpl.class
io.vertx.ext.web.templ.impl.JadeTemplateEngineImpl$1.class
io.vertx.ext.web.templ.impl.JadeTemplateEngineImpl$JadeTemplateLoader.class
io.vertx.ext.web.templ.impl.JadeTemplateEngineImpl.class
io.vertx.ext.web.templ.impl.MVELTemplateEngineImpl.class
io.vertx.ext.web.templ.impl.ThymeleafTemplateEngineImpl$1.class
io.vertx.ext.web.templ.impl.ThymeleafTemplateEngineImpl$ResourceResolver.class
io.vertx.ext.web.templ.impl.ThymeleafTemplateEngineImpl$WebIContext.class
io.vertx.ext.web.templ.impl.ThymeleafTemplateEngineImpl.class
io.vertx.ext.web.templ.JadeTemplateEngine.class
io.vertx.ext.web.templ.MVELTemplateEngine.class
io.vertx.ext.web.templ.TemplateEngine.class
io.vertx.ext.web.templ.ThymeleafTemplateEngine.class
io.vertx.groovy.ext.web.Cookie.class
io.vertx.groovy.ext.web.FileUpload.class
io.vertx.groovy.ext.web.handler.AuthHandler.class
io.vertx.groovy.ext.web.handler.AuthHandlerImpl.class
io.vertx.groovy.ext.web.handler.BasicAuthHandler.class
io.vertx.groovy.ext.web.handler.BodyHandler.class
io.vertx.groovy.ext.web.handler.CookieHandler.class
io.vertx.groovy.ext.web.handler.CorsHandler.class
io.vertx.groovy.ext.web.handler.ErrorHandler.class
io.vertx.groovy.ext.web.handler.FaviconHandler.class
io.vertx.groovy.ext.web.handler.FormLoginHandler.class
io.vertx.groovy.ext.web.handler.JWTAuthHandler.class
io.vertx.groovy.ext.web.handler.LoggerHandler.class
io.vertx.groovy.ext.web.handler.RedirectAuthHandler.class
io.vertx.groovy.ext.web.handler.ResponseTimeHandler.class
io.vertx.groovy.ext.web.handler.SessionHandler.class
io.vertx.groovy.ext.web.handler.sockjs.BridgeEvent.class
io.vertx.groovy.ext.web.handler.sockjs.SockJSHandler$1.class
io.vertx.groovy.ext.web.handler.sockjs.SockJSHandler$2.class
io.vertx.groovy.ext.web.handler.sockjs.SockJSHandler.class
io.vertx.groovy.ext.web.handler.sockjs.SockJSSocket$1.class
io.vertx.groovy.ext.web.handler.sockjs.SockJSSocket.class
io.vertx.groovy.ext.web.handler.StaticHandler.class
io.vertx.groovy.ext.web.handler.TemplateHandler.class
io.vertx.groovy.ext.web.handler.TimeoutHandler.class
io.vertx.groovy.ext.web.handler.UserSessionHandler.class
io.vertx.groovy.ext.web.Route$1.class
io.vertx.groovy.ext.web.Route$2.class
io.vertx.groovy.ext.web.Route$3.class
io.vertx.groovy.ext.web.Route$4.class
io.vertx.groovy.ext.web.Route.class
io.vertx.groovy.ext.web.Router$_getRoutes_closure1.class
io.vertx.groovy.ext.web.Router.class
io.vertx.groovy.ext.web.RoutingContext$1.class
io.vertx.groovy.ext.web.RoutingContext$_cookies_closure1.class
io.vertx.groovy.ext.web.RoutingContext$_fileUploads_closure2.class
io.vertx.groovy.ext.web.RoutingContext.class
io.vertx.groovy.ext.web.Session.class
io.vertx.groovy.ext.web.sstore.ClusteredSessionStore.class
io.vertx.groovy.ext.web.sstore.LocalSessionStore.class
io.vertx.groovy.ext.web.sstore.SessionStore$1.class
io.vertx.groovy.ext.web.sstore.SessionStore.class
io.vertx.groovy.ext.web.templ.HandlebarsTemplateEngine.class
io.vertx.groovy.ext.web.templ.JadeTemplateEngine.class
io.vertx.groovy.ext.web.templ.MVELTemplateEngine.class
io.vertx.groovy.ext.web.templ.TemplateEngine$1.class
io.vertx.groovy.ext.web.templ.TemplateEngine.class
io.vertx.groovy.ext.web.templ.ThymeleafTemplateEngine.class
io.vertx.rxjava.ext.web.Cookie.class
io.vertx.rxjava.ext.web.FileUpload.class
io.vertx.rxjava.ext.web.handler.AuthHandler.class
io.vertx.rxjava.ext.web.handler.AuthHandlerImpl.class
io.vertx.rxjava.ext.web.handler.BasicAuthHandler.class
io.vertx.rxjava.ext.web.handler.BodyHandler.class
io.vertx.rxjava.ext.web.handler.CookieHandler.class
io.vertx.rxjava.ext.web.handler.CorsHandler.class
io.vertx.rxjava.ext.web.handler.ErrorHandler.class
io.vertx.rxjava.ext.web.handler.FaviconHandler.class
io.vertx.rxjava.ext.web.handler.FormLoginHandler.class
io.vertx.rxjava.ext.web.handler.JWTAuthHandler.class
io.vertx.rxjava.ext.web.handler.LoggerHandler.class
io.vertx.rxjava.ext.web.handler.RedirectAuthHandler.class
io.vertx.rxjava.ext.web.handler.ResponseTimeHandler.class
io.vertx.rxjava.ext.web.handler.SessionHandler.class
io.vertx.rxjava.ext.web.handler.sockjs.BridgeEvent.class
io.vertx.rxjava.ext.web.handler.sockjs.SockJSHandler$1.class
io.vertx.rxjava.ext.web.handler.sockjs.SockJSHandler$2.class
io.vertx.rxjava.ext.web.handler.sockjs.SockJSHandler.class
io.vertx.rxjava.ext.web.handler.sockjs.SockJSSocket$1.class
io.vertx.rxjava.ext.web.handler.sockjs.SockJSSocket.class
io.vertx.rxjava.ext.web.handler.StaticHandler.class
io.vertx.rxjava.ext.web.handler.TemplateHandler.class
io.vertx.rxjava.ext.web.handler.TimeoutHandler.class
io.vertx.rxjava.ext.web.handler.UserSessionHandler.class
io.vertx.rxjava.ext.web.Route$1.class
io.vertx.rxjava.ext.web.Route$2.class
io.vertx.rxjava.ext.web.Route$3.class
io.vertx.rxjava.ext.web.Route$4.class
io.vertx.rxjava.ext.web.Route.class
io.vertx.rxjava.ext.web.Router.class
io.vertx.rxjava.ext.web.RoutingContext$1.class
io.vertx.rxjava.ext.web.RoutingContext.class
io.vertx.rxjava.ext.web.Session.class
io.vertx.rxjava.ext.web.sstore.ClusteredSessionStore.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
vertx-dependencies-${stack.version}.jar
/io.vertx/vertx-dependencies/${stack.version}
查看vertx-dependencies所有版本文件
|