Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions jablib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,8 @@ var taskGenerateJournalListMV = tasks.register<JBangTask>("generateJournalListMV
var taskGenerateCitationStyleCatalog = tasks.register<JBangTask>("generateCitationStyleCatalog") {
group = "JabRef"
description = "Generates a catalog of all available citation styles"
// The JBang gradle plugin doesn't handle parallization well - thus we enforce sequential execution
mustRunAfter(taskGenerateJournalListMV)

script = rootProject.layout.projectDirectory.file("build-support/src/main/java/CitationStyleCatalogGenerator.java").asFile.absolutePath

Expand All @@ -288,6 +290,8 @@ var taskGenerateLtwaListMV = tasks.register<JBangTask>("generateLtwaListMV") {
group = "JabRef"
description = "Converts the LTWA CSV file to a H2 MVStore"
dependsOn("downloadLtwaFile", tasks.named("generateGrammarSource"))
// The JBang gradle plugin doesn't handle parallization well - thus we enforce sequential execution
mustRunAfter(taskGenerateCitationStyleCatalog)

script = rootProject.layout.projectDirectory.file("build-support/src/main/java/LtwaListMvGenerator.java").asFile.absolutePath

Expand Down
Loading