Dependency

data class Dependency(val group: String, val artifactId: String, val version: String, val md5Hash: String? = null)

Representation of Dependency

Parameters

group

The group id of the dependency

artifactId

The artifact id of the dependency

version

The version of the dependency

md5Hash

The md5 hash of the dependency, if null the downloader will not check the md5 hash (Which is not recommended)

Constructors

Link copied to clipboard
fun Dependency(group: String, artifactId: String, version: String, md5Hash: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val md5Hash: String? = null
Link copied to clipboard