Leonid Startsev | 21dea85 | 2021-05-18 18:36:19 +0300 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright 2017-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. |
| 3 | */ |
| 4 | |
Roman Elizarov | 5459c10 | 2020-08-11 12:27:36 +0300 | [diff] [blame] | 5 | apply plugin: 'kotlin' |
| 6 | apply plugin: 'kotlinx-serialization' |
| 7 | |
| 8 | dependencies { |
| 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 Tolstopyatov | 0e4e0e7 | 2020-09-14 04:04:34 -0700 | [diff] [blame] | 12 | testImplementation project(":kotlinx-serialization-json") |
Roman Elizarov | 5459c10 | 2020-08-11 12:27:36 +0300 | [diff] [blame] | 13 | testImplementation project(":kotlinx-serialization-cbor") |
| 14 | testImplementation project(":kotlinx-serialization-protobuf") |
| 15 | testImplementation project(":kotlinx-serialization-properties") |
| 16 | } |
| 17 | |
| 18 | sourceSets.test { |
| 19 | java.srcDirs("example", "test") |
| 20 | } |