net.nemerosa.ontrack.model.labels.MainBuildLinksConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
package net.nemerosa.ontrack.model.labels
/**
* Configuration which describes the list of build links
* to display, based on some project labels.
*
* @property labels List of project labels to keep as "main" dependencies
*/
class MainBuildLinksConfig(
val labels: List
) {
fun merge(o: MainBuildLinksConfig) = MainBuildLinksConfig(
(labels + o.labels).distinct()
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy