-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IJ Plugin] Play nice with IDEs without Kotlin/Gradle (#6358)
* Fix missing Kotlin classes when running inspections in IDEs without the Kotlin plugin * Mark the Gradle plugin as optional, and move all components specific to Apollo Kotlin to the Kotlin plugin dependency file. * Remove duplicate action
- Loading branch information
Showing
8 changed files
with
378 additions
and
281 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
intellij-plugin/src/main/resources/META-INF/com.apollographql.ijplugin-gradle.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<idea-plugin> | ||
<!-- Add here declarations that only work in presence of the Gradle plugin --> | ||
|
||
<extensions defaultExtensionNs="com.intellij"> | ||
<!-- Listen to Gradle sync --> | ||
<externalSystemTaskNotificationListener implementation="com.apollographql.ijplugin.gradle.GradleListener" /> | ||
|
||
</extensions> | ||
</idea-plugin> |
Oops, something went wrong.