blob: e01f660e7123c5b8cde75ef337de3a8a0dafa5d8 [file] [log] [blame]
Leonid Startsev21dea852021-05-18 18:36:19 +03001/*
2 * Copyright 2017-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
Roman Elizarov5459c102020-08-11 12:27:36 +03005apply plugin: 'kotlin'
6apply plugin: 'kotlinx-serialization'
7
8dependencies {
9 testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
10 testImplementation "org.jetbrains.kotlinx:kotlinx-knit-test:$knit_version"
11 testImplementation project(":kotlinx-serialization-core")
Vsevolod Tolstopyatov0e4e0e72020-09-14 04:04:34 -070012 testImplementation project(":kotlinx-serialization-json")
Roman Elizarov5459c102020-08-11 12:27:36 +030013 testImplementation project(":kotlinx-serialization-cbor")
14 testImplementation project(":kotlinx-serialization-protobuf")
15 testImplementation project(":kotlinx-serialization-properties")
16}
17
18sourceSets.test {
19 java.srcDirs("example", "test")
20}