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
e1cc27c4
Commit
e1cc27c4
authored
10 years ago
by
anttil
Browse files
Options
Downloads
Patches
Plain Diff
build tracking client zip with gradle
SVN: 32869
parent
9835153f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
deep_sequencing_unit/build.gradle
+55
-4
55 additions, 4 deletions
deep_sequencing_unit/build.gradle
with
55 additions
and
4 deletions
deep_sequencing_unit/build.gradle
+
55
−
4
View file @
e1cc27c4
...
@@ -10,11 +10,61 @@ apply from: '../gradle/javaproject.gradle'
...
@@ -10,11 +10,61 @@ apply from: '../gradle/javaproject.gradle'
archivesBaseName
=
'datastore_server_plugin-dsu'
archivesBaseName
=
'datastore_server_plugin-dsu'
configurations
.
create
(
'trackingClient'
)
dependencies
{
dependencies
{
compile
project
(
':common'
),
compile
project
(
':common'
),
project
(
':datastore_server'
)
project
(
':openbis-common'
),
project
(
':openbis_api'
),
testCompile
project
(
path:
':datastore_server'
,
configuration:
'tests'
)
project
(
':openbis'
),
project
(
':datastore_server'
)
testCompile
project
(
path:
':datastore_server'
,
configuration:
'tests'
)
trackingClient
'cisd:cisd-base:+'
,
'javax:activation:+'
,
'javax:mail:+'
,
'apache:log4j:+'
,
'springframework:spring:+'
,
'marathon:marathon-spring-util:+'
,
'apache:httpclient:+'
}
task
trackingJar
(
type:
Jar
)
{
archiveName
"openbis-tracking-qgf-client.jar"
from
zipTree
(
project
(
':common'
).
jar
.
archivePath
).
plus
(
zipTree
(
project
(
':openbis-common'
).
jar
.
archivePath
).
plus
(
zipTree
(
project
(
':openbis_api'
).
jar
.
archivePath
).
plus
(
zipTree
(
project
(
':datastore_server'
).
jar
.
archivePath
).
plus
(
zipTree
(
project
(
':openbis'
).
jar
.
archivePath
))))).
matching
{
include
'**/*.class'
}
manifest
{
attributes
'Main-Class'
:
'ch.ethz.bsse.cisd.dsu.tracking.main.TrackingClient'
,
"Class-Path"
:
configurations
.
trackingClient
.
files
.
collect
{
it
.
getName
()
}.
join
(
' '
)
}
}
task
trackingZip
(
type:
Zip
,
dependsOn:
[
trackingJar
])
{
baseName
=
"openbis-tracking-qgf-client"
from
(
trackingJar
.
archivePath
)
{
into
"tracking/lib"
}
from
(
configurations
.
trackingClient
.
files
)
{
into
"tracking/lib"
}
from
(
'tracking/dist/etc'
)
{
into
"tracking/etc"
}
from
(
'tracking/dist/tracking.sh'
)
{
into
"tracking/"
}
}
}
task
zip
(
type:
Zip
)
{
task
zip
(
type:
Zip
)
{
...
@@ -30,4 +80,5 @@ task zip(type: Zip) {
...
@@ -30,4 +80,5 @@ task zip(type: Zip) {
}
}
zip
.
dependsOn
jar
zip
.
dependsOn
jar
build
.
dependsOn
zip
build
.
dependsOn
zip
\ No newline at end of file
build
.
dependsOn
trackingZip
\ No newline at end of file
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