Move settings.gradle to kotlin

This commit is contained in:
J.T. McQuigg 2022-12-27 17:59:18 -05:00
parent a9198739ec
commit a8a33aef88
2 changed files with 7 additions and 7 deletions

View File

@ -1,7 +0,0 @@
rootProject.name = 'Ambassador'
includeBuild('Velocity') {
dependencySubstitution {
substitute module('com.velocitypowered:velocity-api') using project(':velocity-api')
substitute module('com.velocitypowered:velocity-proxy') using project(':velocity-proxy')
}
}

7
settings.gradle.kts Normal file
View File

@ -0,0 +1,7 @@
rootProject.name = "Ambassador"
includeBuild("Velocity") {
dependencySubstitution {
substitute(module("com.velocitypowered:velocity-api")).using(project(":velocity-api"))
substitute(module("com.velocitypowered:velocity-proxy")).using(project(":velocity-proxy"))
}
}