Skip to content

Commit d953fd3

Browse files
authored
renamed patchPluginXml>pluginDescription prop key (jetbrains constraint) (#161)
* renamed patchPluginXml>pluginDescription prop key (jetbrains constraint) (#88) * moved plugin description to plugin.xml (#88) * removed Overview and icon in description (#88)
1 parent 00a7bba commit d953fd3

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,9 @@ intellij {
6666
}
6767

6868
patchPluginXml {
69-
sinceBuild sinceIdeaBuild
70-
group 'com.redhat.devtools.intellij'
7169
version projectVersion
72-
pluginDescription description
70+
group 'com.redhat.devtools.intellij'
71+
sinceBuild sinceIdeaBuild
7372
}
7473

7574
publishPlugin {

gradle.properties

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ ideaVersion=IC-2018.3
22
# build number ranges
33
# https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
44
sinceIdeaBuild=183.3975.18
5-
projectVersion=0.1.1
5+
projectVersion=0.1.2
66
jetBrainsToken=invalid
77
jetBrainsChannel=stable
88
kotlinVersion=1.3.72
9-
intellijPluginVersion=0.6.5
10-
description="""Show and operate a kubernetes cluster"""
9+
intellijPluginVersion=0.6.5

src/main/resources/META-INF/plugin.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
<id>com.redhat.devtools.intellij.kubernetes</id>
33
<name>Kubernetes by Red Hat</name>
44
<vendor email="developers@redhat.com" url="http://www.redhat.com">Red-Hat</vendor>
5+
<description>
6+
<![CDATA[
7+
<p>A plugin for interacting with Kubernetes and OpenShift clusters.</p>
8+
<p>The plugin provides functionalities and user experiences that are very close to the Kubernetes extension for vscode (Visual Studio Code Kubernetes Tools).</p>
9+
]]>
10+
</description>
511

612
<depends>com.intellij.modules.lang</depends>
713

0 commit comments

Comments
 (0)