23 lines
363 B
Kotlin
23 lines
363 B
Kotlin
plugins {
|
|
id("dev.panuszewski.typesafe-conventions") version "0.9.0"
|
|
}
|
|
|
|
typesafeConventions {
|
|
autoPluginDependencies = false
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
versionCatalogs {
|
|
create("libs") {
|
|
from(files("../gradle/libs.versions.toml"))
|
|
}
|
|
}
|
|
}
|
|
|
|
include("helpers")
|
|
|
|
rootProject.name = "tweed5-conventions"
|