Skip to content

Commit

Permalink
build: update settings for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
lppedd committed Mar 25, 2023
1 parent 10fcb73 commit f3eb5ac
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# IDEA Pomsky

Provides support for [Pomsky][1] in IntelliJ IDEA-based IDEs.
Provides support for [Pomsky][1] in IntelliJ-based IDEs.

Looking for the latest **plugin binary**? Get it [here][2]!
Supported IDE versions **from 0.1.0**: `231.*` to `233.*` (both inclusive)
Expand Down
3 changes: 3 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ java {
}

intellij {
pluginName.set("idea-pomsky")
version.set("LATEST-EAP-SNAPSHOT")
type.set("IC")
plugins.set(listOf("java" /* Only for code documentation */))
Expand Down Expand Up @@ -69,8 +70,10 @@ tasks {
}

patchPluginXml {
version.set(project.version.toString())
sinceBuild.set("231")
untilBuild.set("233.*")
pluginDescription.set((File("${projectDir.path}/plugin-description.html").readText(Charsets.UTF_8)))
}

runPluginVerifier {
Expand Down
2 changes: 2 additions & 0 deletions plugin-description.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<p>Provides support for <a href="https://pomsky-lang.org/">Pomsky</a> in IntelliJ-based IDEs.</p>
<p>See more <a href="https://github.com/lppedd/idea-pomsky">at GitHub</a>.</p>
5 changes: 1 addition & 4 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<id>com.github.lppedd.idea-pomsky</id>
<name>Pomsky</name>
<vendor email="[email protected]" url="https://github.com/lppedd/idea-pomsky">Edoardo Luppi</vendor>
<description>Provides Pomsky support in IntelliJ-based IDEs.</description>

<depends>com.intellij.modules.platform</depends>
<resource-bundle>messages.PomskyBundle</resource-bundle>

<extensions defaultExtensionNs="com.intellij">
<!-- region Language Support -->
Expand Down Expand Up @@ -132,9 +132,7 @@
language="pomsky"
shortName="PomskyUnusedVariableDeclaration"
level="WARNING"
bundle="messages.PomskyBundle"
key="inspection.declarationRedundancy.variable"
groupBundle="messages.PomskyBundle"
groupKey="inspection.group.declarationRedundancy"
groupPath="Pomsky"
enabledByDefault="true"
Expand All @@ -155,7 +153,6 @@
<notificationGroup
id="com.github.lppedd.idea.pomsky.error.compile"
key="notification.compilation.error"
bundle="messages.PomskyBundle"
displayType="BALLOON"
/>
<!-- endregion -->
Expand Down

0 comments on commit f3eb5ac

Please sign in to comment.