MVN

net.morimekta.tiny.server : tiny-server

Maven & Gradle

Mar 22, 2023

Tiny Server · A tiny server starter for easy and minimal microservice handling. This is based on the assumption that the microservice does not use the admin HTTP server for anything but kubernetes status management. Dependencies are kept at a minimum, but should cover the basic needs of any microservice.

<dependency>
    <groupId>net.morimekta.tiny.server</groupId>
    <artifactId>tiny-server</artifactId>
    <version>0.5.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.morimekta.tiny.server : tiny-server to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.5.0

All Versions

Choose a version of net.morimekta.tiny.server : tiny-server to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.5.x
tiny-server-0.5.0
0.4.x
tiny-server-0.4.0
0.3.x
tiny-server-0.3.0
0.2.x
tiny-server-0.2.0
0.1.x
tiny-server-0.1.0

How to add a dependency to Maven

Add the following net.morimekta.tiny.server : tiny-server maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.morimekta.tiny.server</groupId>
    <artifactId>tiny-server</artifactId>
    <version>0.5.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.morimekta.tiny.server : tiny-server gradle dependency to your build.gradle file:

implementation 'net.morimekta.tiny.server:tiny-server:0.5.0'

Gradle Kotlin DSL: Add the following net.morimekta.tiny.server : tiny-server gradle kotlin dependency to your build.gradle.kts file:

implementation("net.morimekta.tiny.server:tiny-server:0.5.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.morimekta.tiny.server : tiny-server sbt scala dependency to your build.sbt file:

libraryDependencies += "net.morimekta.tiny.server" % "tiny-server" % "0.5.0"