Skip to content

Commit

Permalink
Add shadow to ensure that dependencies are bundled in the fat jar
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
hansenmc committed Nov 2, 2023
1 parent 0bad6a0 commit bb33912
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,14 @@ dependencies {
api 'com.marklogic:marklogic-xcc:11.1.0'
// JavaScript libraries are bundled in a fat jar for the UI
implementation "org.webjars:angularjs:$angularVersion"
shadow "org.webjars:angularjs:$angularVersion"
implementation "org.webjars:bootstrap:$bootstrapVersion"
shadow "org.webjars:bootstrap:$bootstrapVersion"
implementation "org.webjars:jquery:$jqueryVersion"
shadow "org.webjars:jquery:$jqueryVersion"
// externalsortinginjava classes with the corb distro in a fat jar
implementation "com.google.code.externalsortinginjava:externalsortinginjava:$externalsortinginjavaVersion"
shadow "com.google.code.externalsortinginjava:externalsortinginjava:$externalsortinginjavaVersion"
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
testImplementation 'org.jasypt:jasypt:1.9.3'
testImplementation 'com.github.stefanbirkner:system-rules:1.19.0' //facilitates tests for methods that invoke System.exit
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ bootstrapVersion=3.4.1
externalsortinginjavaVersion=0.6.0
jqueryVersion=3.6.4
# 2.1.2 First version built and published with Gradle
version=2.5.5
version=2.5.6

0 comments on commit bb33912

Please sign in to comment.