mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 06:59:44 +07:00
13 lines
454 B
Kotlin
13 lines
454 B
Kotlin
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
|
|
plugins { jewel }
|
|
|
|
dependencies {
|
|
compileOnly("io.gitlab.arturbosch.detekt:detekt-api:1.23.7")
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
|
|
testImplementation("io.gitlab.arturbosch.detekt:detekt-test:1.23.7")
|
|
testImplementation("org.assertj:assertj-core:3.26.3")
|
|
}
|
|
|
|
tasks.test { useJUnitPlatform() }
|