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

commonMain.com.mikepenz.aboutlibraries.entity.Scm.kt Maven / Gradle / Ivy

Go to download

AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.

The newest version!
package com.mikepenz.aboutlibraries.entity

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

/**
 * Describes the [Scm] defined in the `pom.xml` file.
 *
 * https://svn.apache.org/repos/infra/websites/production/maven/content/pom.html#SCM
 *
 * @param connection describing the source connection
 * @param developerConnection optionally describing the developer connection
 * @param url optionally linking to the hosted form of this artifact
 */
@Serializable
data class Scm(
    @SerialName("connection") val connection: String?,
    @SerialName("developerConnection") val developerConnection: String?,
    @SerialName("url") val url: String?
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy