Skip to content

Commit

Permalink
Merge pull request #54 from adamkorynta/bugfix/manifest_libs_dir
Browse files Browse the repository at this point in the history
fix directory for manifest classspath
  • Loading branch information
adamkorynta authored Dec 6, 2023
2 parents a0e365f + 384e0f2 commit 5c971c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion odcs-web-client-jetty-standalone/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jar {
manifest {
attributes(
'Main-Class': 'org.opendcs.odcswebclient.jetty.Start',
'Class-Path': configurations.runtimeClasspath.files.collect { it.getName() }.join(' ')
'Class-Path': configurations.runtimeClasspath.files.collect { "libs/" + it.getName() }.join(' ')
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion odcsapi-jetty-standalone/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jar {
manifest {
attributes(
'Main-Class': 'org.opendcs.odcsapi.jetty.Start',
'Class-Path': configurations.runtimeClasspath.files.collect { it.getName() }.join(' ')
'Class-Path': configurations.runtimeClasspath.files.collect { "libs/" + it.getName() }.join(' ')
)
}
}
Expand Down

0 comments on commit 5c971c2

Please sign in to comment.