com.jetbrains.plugin.structure.dotnet.beans.ReSharperPluginBean.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-dotnet Show documentation
Show all versions of structure-dotnet Show documentation
Library for parsing JetBrains DotNet plugins. Can be used to verify that plugin complies with JetBrains Marketplace requirements.
The newest version!
/*
* Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
*/
package com.jetbrains.plugin.structure.dotnet.beans
import javax.xml.bind.annotation.*
@XmlRootElement(name = "package")
class NuspecDocumentBean {
@get:XmlElement(name = "metadata")
var metadata: ReSharperPluginBean? = null
}
@XmlAccessorType(XmlAccessType.PROPERTY)
class ReSharperPluginBean {
@get:XmlElement(name = "id")
var id: String? = null
@get:XmlElement(name = "title")
var title: String? = null
@get:XmlElement(name = "version")
var version: String? = null
@get:XmlElement(name = "authors")
var authors: String? = null
@get:XmlElement(name = "summary")
var summary: String? = null
@get:XmlElement(name = "description")
var description: String? = null
@get:XmlElement(name = "projectUrl")
var url: String? = null
@get:XmlElement(name = "releaseNotes")
var changeNotes: String? = null
@get:XmlElement(name = "licenseUrl")
var licenseUrl: String? = null
@get:XmlElement(name = "copyright")
var copyright: String? = null
@get:XmlElement(name = "dependencies")
var dependenciesBean: ReSharperPluginDependenciesBean? = null
fun getAllDependencies() = dependenciesBean?.getAllDependencies() ?: emptyList()
}
@XmlAccessorType(XmlAccessType.PROPERTY)
class ReSharperPluginDependenciesBean {
@get:XmlElement(name = "dependency")
var dependencies: List = ArrayList()
@get:XmlElement(name = "group")
var dependencyGroups: List = ArrayList()
fun getAllDependencies(): List {
return dependencies + dependencyGroups.map { it.dependencies }.flatten()
}
}
@XmlAccessorType(XmlAccessType.PROPERTY)
class GroupDependencyBean {
@get:XmlElement(name = "dependency")
var dependencies: List = ArrayList()
}
@XmlAccessorType(XmlAccessType.PROPERTY)
class DotNetDependencyBean {
@get:XmlAttribute(name = "id")
var id: String? = null
@get:XmlAttribute(name = "version")
var version: String? = null
}