All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.ackeecz.danger.dependenciescheck.model.DependencyName.kt Maven / Gradle / Ivy

Go to download

Plugin for danger-kotlin for checking project dependencies (e.g. new available updates or vulnerabilities)

There is a newer version: 1.0.1
Show newest version
package io.github.ackeecz.danger.dependenciescheck.model

internal data class DependencyName(
    val groupId: GroupId,
    val artifactId: ArtifactId,
    val version: Version,
) {

    val fullyQualifiedName = FullyQualifiedName(groupId, artifactId)

    val fullyQualifiedNameWithVersion = "${fullyQualifiedName.value}:${version.value}"
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy