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