Roman Elizarov | 5459c10 | 2020-08-11 12:27:36 +0300 | [diff] [blame] | 1 | apply plugin: 'kotlin' |
| 2 | apply plugin: 'kotlinx-serialization' |
| 3 | |
| 4 | dependencies { |
| 5 | testImplementation "org.jetbrains.kotlin:kotlin-test-junit" |
| 6 | testImplementation "org.jetbrains.kotlinx:kotlinx-knit-test:$knit_version" |
| 7 | testImplementation project(":kotlinx-serialization-core") |
Vsevolod Tolstopyatov | 0e4e0e7 | 2020-09-14 04:04:34 -0700 | [diff] [blame^] | 8 | testImplementation project(":kotlinx-serialization-json") |
Roman Elizarov | 5459c10 | 2020-08-11 12:27:36 +0300 | [diff] [blame] | 9 | testImplementation project(":kotlinx-serialization-cbor") |
| 10 | testImplementation project(":kotlinx-serialization-protobuf") |
| 11 | testImplementation project(":kotlinx-serialization-properties") |
| 12 | } |
| 13 | |
| 14 | sourceSets.test { |
| 15 | java.srcDirs("example", "test") |
| 16 | } |