com.jetbrains.plugin.structure.youtrack.YouTrackPlugin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-youtrack Show documentation
Show all versions of structure-youtrack Show documentation
Library for parsing JetBrains YouTrack Apps. Can be used to verify that plugin complies with JetBrains Marketplace requirements.
package com.jetbrains.plugin.structure.youtrack
import com.jetbrains.plugin.structure.base.plugin.Plugin
import com.jetbrains.plugin.structure.base.plugin.PluginIcon
import com.jetbrains.plugin.structure.base.plugin.ThirdPartyDependency
data class YouTrackPlugin(
override val pluginId: String? = null,
override val pluginName: String? = null,
override val pluginVersion: String? = null,
override val description: String? = null,
override val url: String? = null,
override var vendor: String? = null,
override var vendorUrl: String? = null,
override var vendorEmail: String? = null,
override val icons: List = emptyList(),
override val changeNotes: String? = null,
override val thirdPartyDependencies: List = emptyList(),
val sinceVersion: String? = null,
val untilVersion: String? = null,
) : Plugin