File tree Expand file tree Collapse file tree 4 files changed +123
-11
lines changed
src/main/resources/META-INF Expand file tree Collapse file tree 4 files changed +123
-11
lines changed Original file line number Diff line number Diff line change 1- import org.jetbrains.intellij.tasks.PatchPluginXmlTask
2-
31plugins {
42 id(" org.jetbrains.intellij" ) version " 0.4.16"
53 kotlin(" jvm" ) version " 1.4-M1"
64}
75
86group = " com.github.lppedd"
9- version = " 0.2.0 "
7+ version = " 0.2.1 "
108
119repositories {
1210 maven(" https://dl.bintray.com/kotlin/kotlin-eap" )
1311 mavenCentral()
1412}
1513
1614intellij {
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}
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1- <!-- suppress PluginXmlValidity -->
21<idea-plugin >
32 <id >org.example.untitled1</id >
43 <name >Kotlin Additional Highlighting</name >
You can’t perform that action at this time.
0 commit comments