AvailLibraryDependency

fun AvailLibraryDependency(name: String, dependency: String)

Parameters

name

The name of the root as it will be used by Avail.

dependency

The target library's dependency string of the form

"group:artifactName:version"

fun AvailLibraryDependency(    name: String,     group: String,     artifactName: String,     version: String)

Parameters

name

The name of the root as it will be used by Avail.

group

The dependency's group name.

artifactName

The name of the artifact. This corresponds to the base name the library jar file that should be named without the version or .jar extension. This will be used to construct the AvailRoot.uri.

version

The version of the Avail library to use.