Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

artipie/vertx-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Join our Telegramm group

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

Javadoc License codecov Hits-of-Code Maven Central PDD status

This is a http server based on HttpServer from Vert.x Core, used by artipie project and by some artipie`s adapters (for example, maven-adapter, rpm-adapter) to implement integration tests.

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. If you have any question or suggestions, do not hesitate to create an issue or contact us in Telegram.
Artipie roadmap.

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

Please read contributing rules.

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+.