Skip to content

Commit

Permalink
fix Class-Path entry for music dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
paulwedeck committed Aug 17, 2021
1 parent 12b15bd commit d70f9b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsettlers.main.swing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ task copyDependencies(type: Copy) {
jar {
manifest {
attributes 'Main-Class': mainClassName
attributes 'Class-Path' : lgplDependencies.collect() {"dependencies/" + it}.join(' ');
attributes 'Class-Path' : configurations.lgplDeps.collect() {"dependencies/" + it.getName()}.join(' ');

}
}
Expand Down

0 comments on commit d70f9b1

Please sign in to comment.