comparing_string_references_inspection/build.gradle.kts [15:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
repositories {
  mavenCentral()

  intellijPlatform {
    defaultRepositories()
  }
}

dependencies {
  intellijPlatform {
    intellijIdea("2025.1.7")
    bundledPlugin("com.intellij.java")

    testFramework(TestFrameworkType.Platform)
    testFramework(TestFrameworkType.Plugin.Java)
  }

  testImplementation("junit:junit:4.13.2")
  // workaround for <2024.3
  // https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-faq.html#missing-opentest4j-dependency-in-test-framework
  testImplementation("org.opentest4j:opentest4j:1.3.0")
}

intellijPlatform {
  buildSearchableOptions = false

  pluginConfiguration {
    ideaVersion {
      sinceBuild = "251"
    }
  }
  pluginVerification  {
    ides {
      // since 253, IntelliJ IDEA Community and Ultimate have been merged into IntelliJ IDEA
      select {
        types = listOf(IntellijIdeaCommunity)
        untilBuild = "252.*"
      }
      select {
        types = listOf(IntellijIdea)
        sinceBuild = "253"
        channels = listOf(RELEASE)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



simple_language_plugin/build.gradle.kts [24:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
repositories {
  mavenCentral()

  intellijPlatform {
    defaultRepositories()
  }
}

dependencies {
  intellijPlatform {
    intellijIdea("2025.1.7")
    bundledPlugin("com.intellij.java")

    testFramework(TestFrameworkType.Platform)
    testFramework(TestFrameworkType.Plugin.Java)
  }

  testImplementation("junit:junit:4.13.2")
  // workaround for <2024.3
  // https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-faq.html#missing-opentest4j-dependency-in-test-framework
  testImplementation("org.opentest4j:opentest4j:1.3.0")
}

intellijPlatform {
  buildSearchableOptions = false

  pluginConfiguration {
    ideaVersion {
      sinceBuild = "251"
    }
  }
  pluginVerification  {
    ides {
      // since 253, IntelliJ IDEA Community and Ultimate have been merged into IntelliJ IDEA
      select {
        types = listOf(IntellijIdeaCommunity)
        untilBuild = "252.*"
      }
      select {
        types = listOf(IntellijIdea)
        sinceBuild = "253"
        channels = listOf(RELEASE)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



