From a8a33aef882b54ad0371d4edd9b524ddb8a03d74 Mon Sep 17 00:00:00 2001 From: "J.T. McQuigg" Date: Tue, 27 Dec 2022 17:59:18 -0500 Subject: [PATCH] Move settings.gradle to kotlin --- settings.gradle | 7 ------- settings.gradle.kts | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 settings.gradle create mode 100644 settings.gradle.kts diff --git a/settings.gradle b/settings.gradle deleted file mode 100644 index e7e23f6..0000000 --- a/settings.gradle +++ /dev/null @@ -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') - } -} \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..5de0c54 --- /dev/null +++ b/settings.gradle.kts @@ -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")) + } +} \ No newline at end of file