blob: 7eb04e0f402f45d7b634fc9ae5a904131f3e0bfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
plugins {
id("org.jetbrains.conventions.kotlin-jvm")
}
dependencies {
// Classes from src rely on JUnit's @TempDir and Kotlin's @AfterTest,
// thus these dependencies are needed. Ideally, they should be removed.
implementation(kotlin("test-junit5"))
implementation(libs.junit.jupiterApi)
implementation(libs.kotlinx.coroutines.core)
implementation(libs.jsoup)
implementation(libs.eclipse.jgit)
}
|