Skip to content

Commit

Permalink
first version
Browse files Browse the repository at this point in the history
  • Loading branch information
ly-chn committed Dec 19, 2023
1 parent 50e818b commit a4ac8ff
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 16 deletions.
15 changes: 14 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ plugins {
group = "kim.nzxy"
version = "1.0.0"

tasks {
buildSearchableOptions{
enabled = false
}
compileJava {
options.encoding = "UTF-8"
}
compileTestJava{
options.encoding = "UTF-8"
}
}

repositories {
mavenCentral()
}
Expand All @@ -19,7 +31,8 @@ intellij {
listOf(
"com.intellij.javaee.el",
"com.intellij.spring.mvc",
"org.intellij.intelliLang"
"org.intellij.intelliLang",
"com.intellij.java"
)
)
}
Expand Down
13 changes: 10 additions & 3 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@
<vendor email="[email protected]" url="https://nzxy.kim">NzXy</vendor>

<description><![CDATA[
SpEL support for parameters. and custom annotations
see detail for github
]]></description>
Custom SpEL variables support in your annotations, use it with <a
href="https://github.com/ly-chn/spel-extension">SpEL Extension</a>.
You can define variables for:
<ul>
<li>method result</li>
<li>method parameters</li>
<li>custom fields with generics</li>
</ul>
]]></description>

<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.modules.java</depends>
<depends>com.intellij.javaee.el</depends>
<depends>com.intellij.spring.mvc</depends>
<depends>org.intellij.intelliLang</depends>
Expand Down
12 changes: 0 additions & 12 deletions src/main/resources/META-INF/pluginIcon.svg

This file was deleted.

0 comments on commit a4ac8ff

Please sign in to comment.