Move dependencies to gradle version catalog and clean up buildscripts
This commit is contained in:
@@ -1,19 +1,15 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
|
||||
}
|
||||
|
||||
rootProject.name = "velocity"
|
||||
include(
|
||||
"api",
|
||||
"proxy",
|
||||
"native"
|
||||
)
|
||||
findProject(":api")?.name = "velocity-api"
|
||||
findProject(":proxy")?.name = "velocity-proxy"
|
||||
findProject(":native")?.name = "velocity-native"
|
||||
|
||||
sequenceOf(
|
||||
"api",
|
||||
"proxy",
|
||||
"native",
|
||||
).forEach {
|
||||
val project = ":velocity-$it"
|
||||
include(project)
|
||||
project(project).projectDir = file(it)
|
||||
}
|
||||
|
Reference in New Issue
Block a user