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

commonMain.com.mikepenz.aboutlibraries.entity.Developer.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 [Developer] defined in the `pom.xml` file.
 *
 * https://svn.apache.org/repos/infra/websites/production/maven/content/pom.html#Developers
 *
 * @param name of the developer
 * @param organisationUrl optional organisation url for the developer
 */
@Serializable
data class Developer(
    @SerialName("name") val name: String?,
    @SerialName("organisationUrl") val organisationUrl: String?
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy