How to add a dependency to Maven
Add the following com.oracle.apm.agent.java : apm-java-agent-installer maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.oracle.apm.agent.java</groupId>
<artifactId>apm-java-agent-installer</artifactId>
<version>1.11.0.156</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.oracle.apm.agent.java : apm-java-agent-installer gradle dependency to your build.gradle
file:
implementation 'com.oracle.apm.agent.java:apm-java-agent-installer:1.11.0.156'
Gradle Kotlin DSL: Add the following com.oracle.apm.agent.java : apm-java-agent-installer gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.oracle.apm.agent.java:apm-java-agent-installer:1.11.0.156")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.oracle.apm.agent.java : apm-java-agent-installer sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.oracle.apm.agent.java" % "apm-java-agent-installer" % "1.11.0.156"