1
1
plugins {
2
2
// https://github.com/JetBrains/gradle-intellij-plugin
3
- id ' org.jetbrains.intellij' version ' 1.9.0 '
3
+ id ' org.jetbrains.intellij' version ' 1.10.1 '
4
4
id ' jacoco'
5
5
id ' com.github.kt3k.coveralls' version ' 2.8.4'
6
6
id ' com.github.ManifestClasspath' version ' 0.1.0-RELEASE'
@@ -57,8 +57,8 @@ sourceSets {
57
57
apply plugin : ' idea'
58
58
idea {
59
59
project {
60
- jdkName = JavaVersion . VERSION_11
61
- languageLevel = JavaVersion . VERSION_11
60
+ jdkName = JavaVersion . VERSION_17
61
+ languageLevel = JavaVersion . VERSION_17
62
62
vcs = ' Git'
63
63
}
64
64
module {
@@ -73,7 +73,7 @@ var final EAP_BUILD = '223'
73
73
var idea_version = System . getenv(). getOrDefault(' IDEA_VERSION' , ' 2022.2.1' )
74
74
var build_version = idea_version == EAP_VERSION ? EAP_BUILD : idea_version. substring(2 , 4 ) + idea_version. charAt(5 ) // extract e.g. '221' from '2022.1.1'
75
75
76
- version ' 3.0.1 -' + build_version
76
+ version ' 3.0.2 -' + build_version
77
77
78
78
apply plugin : ' org.jetbrains.intellij'
79
79
intellij {
@@ -107,15 +107,17 @@ Feedback is welcome!
107
107
PS: The previous versions are still available on the project page.
108
108
109
109
110
- Update 3.0.1
111
-
112
- FIX: cannot init component state (componentName=CsvFileAttributes) #359
113
- FIX: cannot invoke "add(Object)" because "this.myUncommittedActions" is null #361
114
- FIX: cannot invoke "createNotification(...)" because "notificationGroup" is null #362
115
- FIX: cannot invoke "getManager()" because the return value of "getPsiFile()" is null #363
116
- FIX: image in plugin description
117
- FIX: plugin update restart
110
+ Update 3.0.2
118
111
112
+ FIX: Detected bulk mode status update from DocumentBulkUpdateListener #384
113
+ FIX: Argument for @NotNull parameter 'parent' of PsiHelper.getNthChildOfType must not be null #372
114
+ FIX: Argument for @NotNull parameter 'element' of PsiHelper.getSiblingOfType must not be null #375
115
+ FIX: Cannot invoke "Document.getText()" because "document" is null #388
116
+ FIX: Cannot invoke "PsiFile.getProject()" because the return value of "CsvPsiTreeUpdater.getPsiFile()" is null #378
117
+ FIX: Argument for @NotNull parameter 'replacement' of CsvPsiTreeUpdater\$ ReplacePsiAction.<init> must not be null #380
118
+ FIX: provide project parameter for opening link
119
+ FIX: Cannot invoke "Document.insertString(int, java.lang.CharSequence)" because "document" is null #386
120
+ FIX: first extension sanity check
119
121
120
122
</pre>"""
121
123
}
@@ -164,10 +166,3 @@ tasks.named("generateLexer").configure {
164
166
compileJava {
165
167
dependsOn generateLexer
166
168
}
167
-
168
- // TODO https://youtrack.jetbrains.com/issue/IDEA-298989 - remove after gradle plugin v1.9.1 or v1.10.0 released
169
- setupDependencies {
170
- doLast {
171
- fileTree(" $buildDir /instrumented/instrumentCode" ) { include(" **/*TableEditorSwing.class" ) }. files. forEach { delete(it) }
172
- }
173
- }
0 commit comments