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