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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy