31 lines
694 B
Plaintext
31 lines
694 B
Plaintext
plugins {
|
|
kotlin("jvm") version "2.0.20"
|
|
id("org.jetbrains.kotlin.plugin.compose") version "2.0.20"
|
|
id("org.jetbrains.compose") version "1.7.3"
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
maven("https://plugins.gradle.org/m2/")
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation(":EveData")
|
|
implementation(compose.runtime)
|
|
|
|
testImplementation(kotlin("test", version = "2.0.20"))
|
|
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1")
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
|
|
compilerOptions.freeCompilerArgs.apply {
|
|
add("-Xlambdas=indy")
|
|
add("-Xcontext-receivers")
|
|
}
|
|
}
|