Download vertx-swagger-router-1.4.0.jar file

Introduction

You can download vertx-swagger-router-1.4.0.jar in this page.

License

The Apache License, Version 2.0

Type List

vertx-swagger-router-1.4.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.phiz71/vertx-swagger-router/pom.properties
META-INF/maven/com.github.phiz71/vertx-swagger-router/pom.xml
com.github.phiz71.rxjava.vertx.swagger.router.SwaggerRouter.class
com.github.phiz71.vertx.swagger.router.DefaultServiceIdResolver.class
com.github.phiz71.vertx.swagger.router.OperationIdServiceIdResolver.class
com.github.phiz71.vertx.swagger.router.ServiceIdResolver.class
com.github.phiz71.vertx.swagger.router.SwaggerRouter.class
com.github.phiz71.vertx.swagger.router.auth.ApiKeyAuthHandler.class
com.github.phiz71.vertx.swagger.router.auth.AuthProviderFactory.class
com.github.phiz71.vertx.swagger.router.auth.AuthProviderRegistry.class
com.github.phiz71.vertx.swagger.router.auth.InterceptableRoutingContext.class
com.github.phiz71.vertx.swagger.router.auth.SwaggerAuthHandlerFactory.class
com.github.phiz71.vertx.swagger.router.extractors.AbstractSerializableParameterExtractor.class
com.github.phiz71.vertx.swagger.router.extractors.BodyParameterExtractor.class
com.github.phiz71.vertx.swagger.router.extractors.FormParameterExtractor.class
com.github.phiz71.vertx.swagger.router.extractors.HeaderParameterExtractor.class
com.github.phiz71.vertx.swagger.router.extractors.ParameterExtractor.class
com.github.phiz71.vertx.swagger.router.extractors.PathParameterExtractor.class
com.github.phiz71.vertx.swagger.router.extractors.QueryParameterExtractor.class
vertx-default-jul-logging.properties

Pom

vertx-swagger-router-1.4.0.pom file content.

<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>
  <parent>
    <groupId>com.github.phiz71</groupId>
    <artifactId>vertx-swagger-parent</artifactId>
    <version>1.4.0</version>
    <relativePath>../..</relativePath>
  </parent>

  <artifactId>vertx-swagger-router</artifactId>


  <name>VertX Swagger Router</name>
  <description>A Vert.X Web Router based on a swagger definition</description>

  <url>https://github.com/phiz71/vertx-swagger/tree/master/modules/vertx-swagger-router</url>

  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>

  <developers>
    <developer>
      <name>Florent Chamfroy</name>
      <email>florent.chamfroy@gmail.com</email>
      <url>https://github.com/phiz71</url>
      <id>phiz71</id>
    </developer>
  </developers>

  <properties>
    <java.version>1.8</java.version>
    <vertx.version>3.4.1</vertx.version>
    <swagger-parser.version>1.0.26</swagger-parser.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-core</artifactId>
      <version>${vertx.version}</version>
    </dependency>
    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-rx-java</artifactId>
      <version>${vertx.version}</version>
    </dependency>
    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-web</artifactId>
      <version>${vertx.version}</version>
    </dependency>

    <dependency>
      <groupId>io.swagger</groupId>
      <artifactId>swagger-parser</artifactId>
      <version>${swagger-parser.version}</version>
    </dependency>

    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-unit</artifactId>
      <version>${vertx.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>

POM Entry

<dependency>
   <groupId>com.github.phiz71</groupId>
   <artifactId>vertx-swagger-router</artifactId>
   <version>1.4.0</version>
</dependency>

Download

If you think the following vertx-swagger-router-1.4.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download vertx-swagger-router-1.4.0.jar file




PreviousNext

Related