Maven Dependency Info
data class MavenDependencyInfo(val groupId: String, val artifactId: String, val version: String, val scope: String? = null, val isDirect: Boolean = false, val depth: Int = 0, val children: MutableList<MavenDependencyInfo> = mutableListOf())
Constructors
Link copied to clipboard
constructor(groupId: String, artifactId: String, version: String, scope: String? = null, isDirect: Boolean = false, depth: Int = 0, children: MutableList<MavenDependencyInfo> = mutableListOf())