MVN

io.micronaut : http

Maven & Gradle

Oct 09, 2018
15 usages

Micronaut · Natively Cloud Native

<dependency>
    <groupId>io.micronaut</groupId>
    <artifactId>http</artifactId>
    <version>1.0.0.M4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.micronaut : http to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0.M4
  • Latest Release Candidate: 1.0.0.RC2

All Versions

Choose a version of io.micronaut : http to add to Maven or Gradle - All Versions:

  • Version Updated
  • http-1.0.0.RC2

    Oct 09, 2018
  • http-1.0.0.M4

    Aug 10, 2018

How to add a dependency to Maven

Add the following io.micronaut : http maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.micronaut</groupId>
    <artifactId>http</artifactId>
    <version>1.0.0.M4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.micronaut : http gradle dependency to your build.gradle file:

implementation 'io.micronaut:http:1.0.0.M4'

Gradle Kotlin DSL: Add the following io.micronaut : http gradle kotlin dependency to your build.gradle.kts file:

implementation("io.micronaut:http:1.0.0.M4")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.micronaut : http sbt scala dependency to your build.sbt file:

libraryDependencies += "io.micronaut" % "http" % "1.0.0.M4"