Skip to content

Commit

Permalink
Restore IJ deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Oct 11, 2024
1 parent 058b976 commit fbc1758
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions platforms/intellij/skate/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import com.jetbrains.plugin.structure.base.utils.exists
import java.nio.file.Paths
import java.util.Locale
import kotlin.io.path.readText
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType

plugins {
Expand Down Expand Up @@ -134,3 +135,24 @@ dependencies {

lintChecks(libs.composeLints)
}

// Can't nest this inside of dependencies {} because otherwise the dependency sorter will remove it
dependencies.intellijPlatform {
// https://plugins.jetbrains.com/docs/intellij/android-studio.html#open-source-plugins-for-android-studio
// https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html
// https://plugins.jetbrains.com/plugin/22989-android/versions/stable
plugin("org.jetbrains.android:242.21829.142")
bundledPlugins(
"com.intellij.java",
"org.intellij.plugins.markdown",
"org.jetbrains.plugins.terminal",
"org.jetbrains.kotlin",
)

pluginVerifier()
zipSigner()
instrumentationTools()

testFramework(TestFrameworkType.Platform)
testFramework(TestFrameworkType.Bundled)
}

0 comments on commit fbc1758

Please sign in to comment.