code_samples/code_inspection_qodana/qodana_playground/build.gradle.kts (17 lines of code) (raw):

// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. plugins { kotlin("jvm") version "2.2.0" } group = "org.intellij.sdk" version = "1.0-SNAPSHOT" repositories { mavenCentral() } dependencies { testImplementation(kotlin("test")) } tasks.test { useJUnitPlatform() } kotlin { jvmToolchain(17) }