Files
vst-chip/settings.common.gradle.kts
rnentjes 31f2d8060c Remove unused import from settings file
The import statement for 'jdk.tools.jlink.resources.plugins' was removed as it was not being used anywhere in the settings.common.gradle.kts file. This cleanup helps to maintain a more organized and efficient codebase, avoiding potential confusion for developers.
2024-12-08 13:48:43 +01:00

11 lines
202 B
Kotlin

pluginManagement {
plugins {
kotlin("multiplatform") version "2.0.21"
}
repositories {
gradlePluginPortal()
mavenCentral()
maven { setUrl("https://plugins.gradle.org/m2/") }
}
}