Skip to content

Commit

Permalink
Fix test compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Apr 11, 2024
1 parent 7412891 commit 3651db5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,13 @@ tasks.register('generateEmojiList') {
}

tasks.named('compileTestJava', JavaCompile) {
doFirst {
def dest = destinationDirectory.asFile.get()
if (dest.exists()) {
dest.deleteDir()
}
dest.mkdirs()
}
dependsOn tasks.named('fullJar')
inputs.file(tasks.fullJar.archiveFile)
CommandLineArgumentProvider lateArgs = {
Expand Down

0 comments on commit 3651db5

Please sign in to comment.