/vertx-server

Artipie HTTP Server Based on Vert.x

Primary LanguageJavaMIT LicenseMIT

EO principles respected here DevOps By Rultor.com We recommend IntelliJ IDEA

Build Status Javadoc License Hits-of-Code Maven Central PDD status

This is a simple storage, used in a few other projects.

This is the dependency you need:

<dependency>
  <groupId>com.artipie</groupId>
  <artifactId>vertx-server</artifactId>
  <version>[...]</version>
</dependency>

Read the Javadoc for more technical details.

Usage example

final Vertx vertx = Vertx.vertx();
final int port = 8080;
final Slice slice = ...; // some Slice implementation
final VertxSliceServer server = new VertxSliceServer(vertx, slice, port);
server.start();

How to contribute

Fork repository, make changes, send us a pull request. We will review your changes and apply them to the master branch shortly, provided they don't violate our quality standards. To avoid frustration, before sending us your pull request please run full Maven build:

$ mvn clean install -Pqulice

To avoid build errors use Maven 3.2+.