Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
995af492
Commit
995af492
authored
11 years ago
by
anttil
Browse files
Options
Downloads
Patches
Plain Diff
BIS-639 / SP-1178: Add to the Gradle Build a task that provides a standalone Data Set Uploader jar
SVN: 30522
parent
8411f7c4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openbis_standard_technologies/build.gradle
+2
-1
2 additions, 1 deletion
openbis_standard_technologies/build.gradle
openbis_standard_technologies/clients.gradle
+29
-1
29 additions, 1 deletion
openbis_standard_technologies/clients.gradle
with
31 additions
and
2 deletions
openbis_standard_technologies/build.gradle
+
2
−
1
View file @
995af492
...
...
@@ -357,4 +357,5 @@ task clientsAndApis(type: Zip, dependsOn: [dssClientZip, queryApiZip, proteomics
build
.
dependsOn
zip
build
.
dependsOn
zipDss
build
.
dependsOn
clientsAndApis
build
.
dependsOn
dssUploadGuiStandaloneZip
\ No newline at end of file
build
.
dependsOn
dssUploadGuiStandaloneZip
build
.
dependsOn
dssUploadGuiStandaloneJar
\ No newline at end of file
This diff is collapsed.
Click to expand it.
openbis_standard_technologies/clients.gradle
+
29
−
1
View file @
995af492
...
...
@@ -155,7 +155,6 @@ task dssClientZip(type: Zip, dependsOn: signWebStartJars) {
}
task
dssUploadGuiStandalone
<<
{
logger
.
error
(
"dssUploadGuiStandalone JAVA.HOME: "
+
System
.
properties
.
'java.home'
)
ant
.
taskdef
(
name:
'bundle'
,
classname:
'com.oracle.appbundler.AppBundlerTask'
,
classpath:
configurations
.
appbundler
.
asPath
)
ant
.
bundle
(
outputdirectory:
"${buildDir}"
,
name:
'DataSetUploader'
,
...
...
@@ -187,6 +186,35 @@ task dssUploadGuiStandalone << {
}
dssUploadGuiStandalone
.
dependsOn
signWebStartJars
task
dssUploadGuiStandaloneJar
(
type:
Jar
,
dependsOn:
dssUploadGuiStandalone
)
{
baseName
'dss_upload_gui_standalone'
from
({
fileTree
(
"${signedJarsFolder}"
).
matching
{
include
"cglib-nodep.jar"
include
"cisd-args4j.jar"
include
"cisd-base.jar"
include
"commons-codec.jar"
include
"commons-httpclient.jar"
include
"commons-io.jar"
include
"commons-lang.jar"
include
"commons-logging.jar"
include
"dom4j-1.6.1.jar"
include
"dss_upload_gui.jar"
include
"geronimo-stax-api_1.0_spec-1.0.jar"
include
"jython.jar"
include
"log4j.jar"
include
"poi-ooxml-schemas.jar"
include
"poi-ooxml.jar"
include
"poi.jar"
include
"spring.jar"
include
"stream-supporting-httpinvoker.jar"
}.
collect
{
zipTree
(
it
).
matching
{
exclude
"META-INF/**"
}}})
manifest
{
attributes
(
"Main-Class"
:
"ch.systemsx.cisd.openbis.dss.client.api.gui.DataSetUploadClient"
)
}
}
task
dssUploadGuiStandaloneZip
(
type:
Zip
,
dependsOn:
dssUploadGuiStandalone
)
{
baseName
'dss_upload_gui_standalone'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment