DependencyTreeNode

data class DependencyTreeNode(val groupId: String, val artifactId: String, val currentVersion: String, val latestVersion: String? = null, val isDirectDependency: Boolean = false, val isDependencyManagement: Boolean = false, val scope: String? = null, val vulnerabilities: List<Vulnerability> = emptyList(), val children: List<DependencyTreeNode> = emptyList(), val dependencyChain: List<String>? = null, val ecosystem: Ecosystem = Ecosystem.MAVEN)

Constructors

Link copied to clipboard
constructor(groupId: String, artifactId: String, currentVersion: String, latestVersion: String? = null, isDirectDependency: Boolean = false, isDependencyManagement: Boolean = false, scope: String? = null, vulnerabilities: List<Vulnerability> = emptyList(), children: List<DependencyTreeNode> = emptyList(), dependencyChain: List<String>? = null, ecosystem: Ecosystem = Ecosystem.MAVEN)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val depth: Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard