Skip to content

Commit

Permalink
Fixed: JitPack Build Error
Browse files Browse the repository at this point in the history
  • Loading branch information
Bram1903 committed Jul 8, 2024
1 parent 304606b commit 78f406c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@ dependencies {
}

tasks {
javadoc {
mustRunAfter(generateVersionsFile)
}

sourcesJar {
mustRunAfter(generateVersionsFile)
}

withType<JavaCompile> {
dependsOn(generateVersionsFile)
}

generateVersionsFile {
packageName = "me.tofaa.entitylib.utils"
}
Expand Down

0 comments on commit 78f406c

Please sign in to comment.