Skip to content

Commit 6754682

Browse files
committed
Build error: Cannot find builtin plugin IntelliLang for IDE (#322)
- Locked sandbox version to 2019 release as workaround to https://youtrack.jetbrains.com/issue/IDEA-233841 breaking the build against LATEST-EAP-SNAPSHOT 2020 versions - Upgraded org.jetbrains.grammarkit to be comptible with upcoming 2020 (JetBrains/gradle-grammar-kit-plugin#24)
1 parent 7845215 commit 6754682

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

build.gradle

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
1-
buildscript {
2-
repositories {
3-
maven { url 'https://jitpack.io'}
4-
}
5-
dependencies{
6-
classpath "com.github.JetBrains:gradle-grammar-kit-plugin:2019.3"
7-
}
8-
}
9-
101
plugins {
11-
id 'org.jetbrains.intellij' version '0.4.15'
2+
id "org.jetbrains.grammarkit" version "2020.1"
3+
id 'org.jetbrains.intellij' version '0.4.16'
124
id "com.github.ManifestClasspath" version "0.1.0-RELEASE"
135
}
146

157
group 'com.intellij.lang.jsgraphql'
168
version '2.3.0'
179

10+
apply plugin: 'org.jetbrains.grammarkit'
1811
apply plugin: 'java'
1912

2013
sourceCompatibility = 1.8
@@ -38,7 +31,7 @@ dependencies {
3831
}
3932

4033
intellij {
41-
version 'LATEST-EAP-SNAPSHOT'
34+
version 'IU-193.6494.35'
4235
type 'IU'
4336
updateSinceUntilBuild = false
4437
pluginName 'JS GraphQL'

0 commit comments

Comments
 (0)