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