16 lines
290 B
Kotlin
16 lines
290 B
Kotlin
pluginManagement {
|
|
plugins {
|
|
id("org.jetbrains.kotlin.jvm") version "2.0.21"
|
|
}
|
|
}
|
|
|
|
rootProject.name = "harmness-browser"
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
intellijPlatform {
|
|
defaultRepositories()
|
|
}
|
|
}
|
|
} |