How to add a dependency to Maven
Add the following io.springboot.nacos : nacos-prometheus maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>io.springboot.nacos</groupId>
<artifactId>nacos-prometheus</artifactId>
<version>2.2.4-OEM</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following io.springboot.nacos : nacos-prometheus gradle dependency to your build.gradle
file:
implementation 'io.springboot.nacos:nacos-prometheus:2.2.4-OEM'
Gradle Kotlin DSL: Add the following io.springboot.nacos : nacos-prometheus gradle kotlin dependency to your build.gradle.kts
file:
implementation("io.springboot.nacos:nacos-prometheus:2.2.4-OEM")
How to add a dependency to SBT Scala
SBT Scala: Add the following io.springboot.nacos : nacos-prometheus sbt scala dependency to your build.sbt
file:
libraryDependencies += "io.springboot.nacos" % "nacos-prometheus" % "2.2.4-OEM"