Skip to content

Commit a6f6ab8

Browse files
committed
Fix #46: java.lang.NoClassDefFoundError: com/intellij/lang/properties/references/PropertiesCompletionContributor
1 parent c2b6dbb commit a6f6ab8

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.27.3
2+
* Fix [#46](https://github.com/BlueBoxWare/LibGDXPlugin/issues/46): java.lang.NoClassDefFoundError: com/intellij/lang/properties/references/PropertiesCompletionContributor
3+
14
### 1.27.2
25
* Fix [#44](https://github.com/BlueBoxWare/LibGDXPlugin/issues/44): ProhibitedAnalysisException: Analysis is not allowed: Called from a write action
36

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pluginGroup = com.gmail.blueboxware
22
pluginName = LibGDX
3-
pluginVersion = 1.27.2
3+
pluginVersion = 1.27.3
44

55
pluginSinceBuild = 252.27397.103
66
#pluginSinceBuild = 253.29346.138
@@ -13,7 +13,7 @@ platformVersion = 252.27397.103
1313
#platformVersion = 2025.3.1
1414

1515
platformBundledPlugins = com.intellij.java, org.jetbrains.kotlin, com.intellij.properties, com.intellij.modules.json
16-
platformBundledModules = intellij.spellchecker, intellij.properties.backend.psi
16+
platformBundledModules = intellij.spellchecker, intellij.properties.backend.psi, intellij.properties.backend
1717

1818
kotlin.stdlib.default.dependency = false
1919

src/main/resources/META-INF/plugin.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
<change-notes><![CDATA[
3232
<ul>
33-
<li>Fix #44: ProhibitedAnalysisException: Analysis is not allowed: Called from a write action</li>
33+
<li>Fix #46: java.lang.NoClassDefFoundError: com/intellij/lang/properties/references/PropertiesCompletionContributor</li>
3434
</ul>
3535
]]>
3636
</change-notes>
@@ -43,6 +43,7 @@
4343
<plugin id="com.intellij.modules.platform"/>
4444
<module name="intellij.spellchecker"/>
4545
<module name="intellij.properties.backend.psi"/>
46+
<module name="intellij.properties.backend" />
4647
</dependencies>
4748

4849
<projectListeners>

0 commit comments

Comments
 (0)