File tree 4 files changed +123
-11
lines changed
src/main/resources/META-INF
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
-
3
1
plugins {
4
2
id(" org.jetbrains.intellij" ) version " 0.4.16"
5
3
kotlin(" jvm" ) version " 1.4-M1"
6
4
}
7
5
8
6
group = " com.github.lppedd"
9
- version = " 0.2.0 "
7
+ version = " 0.2.1 "
10
8
11
9
repositories {
12
10
maven(" https://dl.bintray.com/kotlin/kotlin-eap" )
13
11
mavenCentral()
14
12
}
15
13
16
14
intellij {
17
- version = " IU-2019.3 "
18
- pluginName = " Kotlin Additional Highlighting "
15
+ version = " IU-2019.2 "
16
+ pluginName = " kotlin-additional-highlighting "
19
17
setPlugins(" Kotlin" )
20
18
}
21
19
@@ -27,10 +25,12 @@ tasks {
27
25
compileTestKotlin {
28
26
kotlinOptions.jvmTarget = " 1.8"
29
27
}
30
- }
31
28
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
+ }
36
36
}
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 -->
2
1
<idea-plugin >
3
2
<id >org.example.untitled1</id >
4
3
<name >Kotlin Additional Highlighting</name >
You can’t perform that action at this time.
0 commit comments