Skip to content

Commit

Permalink
Fix jar task
Browse files Browse the repository at this point in the history
Fixes #4
  • Loading branch information
jmattheis committed Sep 3, 2021
1 parent 3c0caa8 commit 6991d0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ dependencies {

jar {
manifest.attributes 'Main-Class': 'de.factfinder.runner.RunnerSearch'
duplicatesStrategy = 'exclude'
from {
configurations.compile.collect { (it.directory ? it : zipTree(it)) }
configurations.runtimeClasspath.collect { (it.directory ? it : zipTree(it)) }
}
}

Expand Down

0 comments on commit 6991d0a

Please sign in to comment.