You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
version =VersionRange("232.1", ""), // empty is the same as 999.* was before
29
-
ideVersionsForVerifierTask =listOf("2023.2"),
30
-
deps =listOf(
31
-
"java",
32
-
"org.jetbrains.kotlin",
33
-
"gradle"
34
-
) // kotlin plugin version no longer needed as it's now bundled with the IDE
35
-
)
36
-
)
37
-
38
21
// needed as the intellij plugin does add its own repositories and thus the ones defined in the settings.gradle.kts are ignored. Hence, we need to redefine them here
39
22
repositories {
40
23
mavenLocal()
41
24
mavenCentral()
42
25
google()
43
26
maven { url = uri("https://plugins.gradle.org/m2/") } // needed for shadowJar plugin dependency implementation in `godot-gradle-plugin`
27
+
28
+
intellijPlatform {
29
+
defaultRepositories()
30
+
}
44
31
}
45
32
46
33
version = fullGodotKotlinJvmVersion
47
-
48
34
group ="com.utopia-rise"
49
35
50
-
val sdkVersion = project.properties["godot.plugins.intellij.version"] ?:"IJ232"
51
-
val settings = checkNotNull(buildMatrix[sdkVersion])
Copy file name to clipboardExpand all lines: kt/plugins/godot-intellij-plugin/src/main/kotlin/godot/intellij/plugin/annotator/property/PropertyHintAnnotationChecker.kt
Copy file name to clipboardExpand all lines: kt/plugins/godot-intellij-plugin/src/main/kotlin/godot/intellij/plugin/annotator/reference/CallFunctionReferenceChecker.kt
Copy file name to clipboardExpand all lines: kt/plugins/godot-intellij-plugin/src/main/kotlin/godot/intellij/plugin/annotator/reference/SignalFunctionReferenceChecker.kt
0 commit comments