diff options
author | Roman / Nea <romangraef@gmail.com> | 2022-08-20 02:11:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-20 02:11:14 +0200 |
commit | e287e601b262de64e95cf54a614d4c61c3276c98 (patch) | |
tree | 34192a5d9bd66c17d7d56876393c8d6e002c131c | |
parent | 7c91904d2084676723761870c749d30fe4bb4690 (diff) | |
download | Forge1.8.9Template-e287e601b262de64e95cf54a614d4c61c3276c98.tar.gz Forge1.8.9Template-e287e601b262de64e95cf54a614d4c61c3276c98.tar.bz2 Forge1.8.9Template-e287e601b262de64e95cf54a614d4c61c3276c98.zip |
Use java instead of kotlin class root for resources
-rw-r--r-- | build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index b8528a0..5021919 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -37,7 +37,7 @@ loom { } sourceSets.main { - output.setResourcesDir(file("$buildDir/classes/kotlin/main")) + output.setResourcesDir(file("$buildDir/classes/java/main")) } // Dependencies: |