From bb5552c8bc5393fc2ef564309ea6d5c35cde1773 Mon Sep 17 00:00:00 2001 From: dfsek Date: Tue, 8 Dec 2020 20:10:55 -0700 Subject: [PATCH] Fix build issue causing lang to not be bundled --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2aeeafa61..8d4d14350 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,7 +25,7 @@ java { targetCompatibility = JavaVersion.VERSION_1_8 } -val versionObj = Version("2", "0", "1", true) +val versionObj = Version("2", "0", "2", true) version = versionObj @@ -63,7 +63,7 @@ val compileJava: JavaCompile by tasks val mainSourceSet: SourceSet = sourceSets["main"] tasks.withType { - include("*.yml") + include("**/*.yml") filter( "tokens" to mapOf( "VERSION" to project.version.toString()