Skip to content

Commit 11eba53

Browse files
committed
build: prepare for release and advance version to 0.2.1
1 parent 48e5948 commit 11eba53

File tree

4 files changed

+123
-11
lines changed

4 files changed

+123
-11
lines changed

Diff for: build.gradle.kts

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
1-
import org.jetbrains.intellij.tasks.PatchPluginXmlTask
2-
31
plugins {
42
id("org.jetbrains.intellij") version "0.4.16"
53
kotlin("jvm") version "1.4-M1"
64
}
75

86
group = "com.github.lppedd"
9-
version = "0.2.0"
7+
version = "0.2.1"
108

119
repositories {
1210
maven("https://dl.bintray.com/kotlin/kotlin-eap")
1311
mavenCentral()
1412
}
1513

1614
intellij {
17-
version = "IU-2019.3"
18-
pluginName = "Kotlin Additional Highlighting"
15+
version = "IU-2019.2"
16+
pluginName = "kotlin-additional-highlighting"
1917
setPlugins("Kotlin")
2018
}
2119

@@ -27,10 +25,12 @@ tasks {
2725
compileTestKotlin {
2826
kotlinOptions.jvmTarget = "1.8"
2927
}
30-
}
3128

32-
tasks.getByName<PatchPluginXmlTask>("patchPluginXml") {
33-
version(project.version)
34-
sinceBuild("193")
35-
untilBuild(null)
29+
patchPluginXml {
30+
setPluginId("com.github.lppedd.kotlin-additional-highlighting")
31+
version(project.version)
32+
sinceBuild("192")
33+
untilBuild(null)
34+
pluginDescription(File("plugin-description.html").readText(Charsets.UTF_8))
35+
}
3636
}

Diff for: plugin-description.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<p>
2+
This plugin provides code style customization for
3+
<strong>infix</strong> and <strong>operator</strong> (math & keyword) functions.
4+
</p>
5+
<br/>
6+
<p>
7+
See more
8+
<a href="https://github.com/lppedd/idea-kotlin-additional-highlighting">here at GitHub</a>.
9+
</p>

Diff for: src/main/resources/META-INF/plugin.xml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!--suppress PluginXmlValidity -->
21
<idea-plugin>
32
<id>org.example.untitled1</id>
43
<name>Kotlin Additional Highlighting</name>

Diff for: src/main/resources/META-INF/pluginIcon.svg

+104
Loading

0 commit comments

Comments
 (0)