Skip to content

Commit

Permalink
fix plugin.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
fatjyc committed Apr 2, 2021
1 parent 62a6188 commit 5853500
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 37 deletions.
27 changes: 27 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,33 @@ intellij {

tasks {
patchPluginXml {
pluginId("dev.nocalhost.nocalhost-intellij-plugin")
pluginDescription(
"""
<html>
<p>
Nocalhost Intellij Plugin
</p>
<p>
Nocalhost is Cloud Native Development Environment.
</p>
<p>
Features:
<ul>
<li>Login to nocalhost API Server and list the DevSpaces</li>
<li>Install and Uninstall DevSpaces</li>
<li>Start DevMode to develop services</li>
</ul>
</p>
<p>
Refer to <a href="https://nocalhost.dev/">nocalhost.dev</a> for more Nocalhost information.
</p>
</html>
""".trimIndent()
)
changeNotes(
"""
Fix: Get unnamed container error. <br />
Expand Down
38 changes: 1 addition & 37 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,45 +1,9 @@
<idea-plugin>
<id>dev.nocalhost.nocalhost-intellij-plugin</id>
<name>Nocalhost</name>
<vendor url="https://nocalhost.dev/">Nocalhost</vendor>

<!-- please see http://confluence.jetbrains.net/display/IDEADEV/Build+Number+Ranges for description -->
<idea-version since-build="203.5981.155" />

<description>
<![CDATA[
<html>
<p>
Nocalhost Intellij Plugin
</p>
<p>
Nocalhost is Cloud Native Development Environment.
</p>
<p>
Features:
<ul>
<li>Login to nocalhost API Server and list the DevSpaces</li>
<li>Install and Uninstall DevSpaces</li>
<li>Start DevMode to develop services</li>
</ul>
</p>
<p>
Refer to <a href="https://nocalhost.dev/">nocalhost.dev</a> for more Nocalhost information.
</p>
</html>
]]>
</description>

<!-- <change-notes>-->
<!-- <![CDATA[-->
<!-- <html>-->
<!-- <p>initialize repo</p>-->
<!-- </html>-->
<!-- ]]>-->
<!-- </change-notes>-->
<idea-version since-build="203.5981.155" until-build="203.*" />

<!-- please see https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
Expand Down

0 comments on commit 5853500

Please sign in to comment.