29 lines
476 B
Groovy
Raw Normal View History

2023-04-04 01:01:22 +06:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "org.jetbrains.kotlin.multiplatform"
}
2023-10-21 00:28:12 +06:00
apply from: "$nativePartTemplate"
2023-04-04 01:01:22 +06:00
kotlin {
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
2023-04-19 20:20:11 +06:00
api project(":ResenderBot:ResenderBotLib")
2023-04-04 01:01:22 +06:00
}
}
}
}
2023-04-19 20:20:11 +06:00