File tree Expand file tree Collapse file tree 3 files changed +7
-14
lines changed Expand file tree Collapse file tree 3 files changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ apply plugin: 'java'
1616apply plugin : " kotlin"
1717
1818group ' me.hiten'
19- version ' 1.0-SNAPSHOT '
19+ version ' 0.1 '
2020
2121sourceCompatibility = 1.8
2222
@@ -30,11 +30,8 @@ dependencies {
3030
3131// See https://github.com/JetBrains/gradle-intellij-plugin/
3232intellij {
33+ pluginName ' android-dependencies-completion'
3334 version ' 2019.1.2'
35+ updateSinceUntilBuild = false
3436 plugins = [' Groovy' , ' gradle' ]
3537}
36- patchPluginXml {
37- changeNotes """
38- Add change notes here.<br>
39- <em>most HTML tags may be used</em>"""
40- }
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ import com.intellij.codeInsight.lookup.*
77import com.intellij.util.containers.isNullOrEmpty
88import me.hiten.completion.androidsearch.AndroidDependencySearcher
99import me.hiten.completion.mavensearch.MavenDependencySearcher
10- import java.awt.Color
1110
1211class DependencySearchManager (private val dependencyText : DependencyText ) {
1312
@@ -177,7 +176,6 @@ class DependencySearchManager(private val dependencyText: DependencyText) {
177176 }
178177 presentation?.itemText = " ${result.groupId} :${result.artifact} :$$quoteArg =${result.version} "
179178 }
180- presentation?.itemTextForeground = Color .BLUE
181179 }
182180 }
183181
Original file line number Diff line number Diff line change 77 <description >
88 <![CDATA[ Gradle Dependencies Code Completion , Searched by Maven'repo and Google'repo, for Android Developer]]> </description >
99
10- <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
11- on how to target different products -->
12- <!-- uncomment to enable plugin in all products
13- <depends>com.intellij.modules.lang</depends>
14- -->
1510 <depends >org.jetbrains.plugins.gradle</depends >
1611 <depends >org.intellij.groovy</depends >
1712
18- <idea-version since-build =" 171" />
13+ <change-notes >
14+ <![CDATA[ 0.1 Add google repo search and quote symbol]]> </change-notes >
15+
16+ <idea-version since-build =" 173.0" />
1917
2018 <extensions defaultExtensionNs =" com.intellij" >
2119 <completion .contributor language =" Groovy" implementationClass =" me.hiten.completion.GradleDependenciesCompletionContributor" order =" first" />
You can’t perform that action at this time.
0 commit comments