migration to gradle kotlin dsl

This commit is contained in:
2021-11-19 09:59:40 +01:00
parent 6bbdfbc4a6
commit abefa54cd2
18 changed files with 122 additions and 128 deletions

View File

@@ -1 +0,0 @@
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

View File

@@ -0,0 +1,6 @@
val texturePackerSource = "src/main/textures"
val texturePackerResources = "$buildDir/generated/sources/texturePacker/resources/main"
val texturePackerGeneratedSources = "$buildDir/generated/sources/texturePacker/java/main"
sourceSets.main.get().java.srcDir(texturePackerGeneratedSources)
sourceSets.main.get().resources.srcDir(texturePackerResources)