aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/build.gradle.kts
blob: eba1dd47f3723d67b2707d8eb835c6ec450e3713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
}