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