MVN

net.officefloor.tutorial : StaticHttpServer

Maven & Gradle

May 21, 2012

Static HTTP Server Tutorial · Tutorial of using OfficeFloor for a Static HTTP Server

<dependency>
    <groupId>net.officefloor.tutorial</groupId>
    <artifactId>StaticHttpServer</artifactId>
    <version>2.2.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.officefloor.tutorial : StaticHttpServer to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.2.0

All Versions

Choose a version of net.officefloor.tutorial : StaticHttpServer to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.2.x
StaticHttpServer-2.2.0
2.1.x
StaticHttpServer-2.1.0
2.0.x
StaticHttpServer-2.0.0
1.4.x
StaticHttpServer-1.4.0
1.3.x
StaticHttpServer-1.3.0
1.2.x
StaticHttpServer-1.2.0
1.1.x
StaticHttpServer-1.1.0

How to add a dependency to Maven

Add the following net.officefloor.tutorial : StaticHttpServer maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.officefloor.tutorial</groupId>
    <artifactId>StaticHttpServer</artifactId>
    <version>2.2.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.officefloor.tutorial : StaticHttpServer gradle dependency to your build.gradle file:

implementation 'net.officefloor.tutorial:StaticHttpServer:2.2.0'

Gradle Kotlin DSL: Add the following net.officefloor.tutorial : StaticHttpServer gradle kotlin dependency to your build.gradle.kts file:

implementation("net.officefloor.tutorial:StaticHttpServer:2.2.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.officefloor.tutorial : StaticHttpServer sbt scala dependency to your build.sbt file:

libraryDependencies += "net.officefloor.tutorial" % "StaticHttpServer" % "2.2.0"