blob: f5ecb915fca729d523df63fa960c9dc599421cee [file] [log] [blame]
/*
* Copyright 2017-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
apply plugin: 'kotlin-multiplatform'
apply plugin: 'kotlinx-serialization'
apply from: rootProject.file("gradle/targets.gradle")
apply from: rootProject.file("gradle/native_mpp.gradle")
apply from: rootProject.file("gradle/configureSourceSets.gradle")
kotlin {
sourceSets {
jvmTest {
dependencies {
implementation 'io.kotlintest:kotlintest:2.0.7'
implementation 'com.google.guava:guava:24.1.1-jre'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
}
}
}
}