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