Skip to content
Snippets Groups Projects
Commit 63a4db3b authored by felmer's avatar felmer
Browse files

SP-970, SWE-22: fixing bug of missing dss_client.jar

SVN: 30102
parent 38de0880
No related branches found
No related tags found
No related merge requests found
...@@ -100,7 +100,7 @@ task createDssClientJar(type: Jar) { ...@@ -100,7 +100,7 @@ task createDssClientJar(type: Jar) {
} }
} }
task copyJarsForWebStart(type: Copy) { task copyJarsForWebStart(type: Copy, dependsOn: [createOpenbisJar, createDssClientJar]) {
from configurations.webStartJars.files from configurations.webStartJars.files
from (jarsToBeSignedFolder) { from (jarsToBeSignedFolder) {
include dssGuiClientJarName include dssGuiClientJarName
...@@ -118,7 +118,7 @@ task copyJarsForWebStart(type: Copy) { ...@@ -118,7 +118,7 @@ task copyJarsForWebStart(type: Copy) {
} }
keystoreFile = '../screening/etc/dev.keystore' keystoreFile = '../screening/etc/dev.keystore'
task signWebStartJars(type: Copy, dependsOn: [createOpenbisJar, createDssClientJar, copyJarsForWebStart]) { task signWebStartJars(type: Copy, dependsOn: [copyJarsForWebStart]) {
from jarsToBeSignedFolder from jarsToBeSignedFolder
into signedJarsFolder into signedJarsFolder
inputs.file keystoreFile inputs.file keystoreFile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment