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
1334502e
Commit
1334502e
authored
10 years ago
by
anttil
Browse files
Options
Downloads
Patches
Plain Diff
SWE-22 / SSDM-15: Create API Javadoc with Gradle
SVN: 31207
parent
a4dd4c26
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_all/source/bash/build/build.sh
+1
-0
1 addition, 0 deletions
openbis_all/source/bash/build/build.sh
openbis_standard_technologies/build.gradle
+31
-1
31 additions, 1 deletion
openbis_standard_technologies/build.gradle
with
32 additions
and
1 deletion
openbis_all/source/bash/build/build.sh
+
1
−
0
View file @
1334502e
...
...
@@ -35,6 +35,7 @@ then
fi
cd
tmp/gradle
./gradlew :openbis_standard_technologies:generateJavadoc
./gradlew :openbis_standard_technologies:clientsAndApis
./gradlew :installation:build
cd
../..
...
...
This diff is collapsed.
Click to expand it.
openbis_standard_technologies/build.gradle
+
31
−
1
View file @
1334502e
...
...
@@ -24,6 +24,8 @@ archivesBaseName = 'openBIS-server-standard-technologies'
configurations
.
create
(
'gwt'
)
configurations
.
create
(
'zipping'
)
configurations
.
create
(
'datastore_server'
)
configurations
.
create
(
'javadoc_sources'
)
configurations
.
create
(
'javadoc_compilation'
)
def
jettyVersion
=
'8.1.8'
...
...
@@ -53,6 +55,20 @@ dependencies {
'slf4j:slf4j:+'
,
'slf4j:slf4j-log4j12:+'
,
'sybit:image-viewer:+'
javadoc_sources
project
(
path:
':common'
,
configuration:
'archives'
),
project
(
path:
':openbis_api'
,
configuration:
'archives'
),
project
(
path:
':openbis-common'
,
configuration:
'archives'
),
project
(
path:
':openbis'
,
configuration:
'archives'
),
project
(
path:
':datastore_server'
,
configuration:
'archives'
),
project
(
path:
':rtd_phosphonetx'
,
configuration:
'archives'
),
project
(
path:
':screening'
,
configuration:
'archives'
),
'cisd:cisd-base:+:sources'
,
'cisd:cisd-args4j:+:sources'
,
'cisd:cisd-hotdeploy:+:sources'
javadoc_compilation
project
(
path:
':rtd_phosphonetx'
),
project
(
path:
':screening'
)
}
buildscript
{
...
...
@@ -354,8 +370,22 @@ task clientsAndApis(type: Zip, dependsOn: [dssClientZip, queryApiZip, proteomics
}
task
generateJavadoc
(
type:
Javadoc
)
{
source
=
configurations
.
javadoc_sources
.
collect
{
zipTree
(
it
).
matching
{
include
"**/ch/systemsx/cisd/**/api/**/*.java"
include
"**/ch/systemsx/cisd/base/**/*.java"
include
"**/source/java/OpenBISScreeningML.java"
include
"**/source/java/ch/systemsx/cisd/**/etlserver/TopLevelDataSetRegistratorGlobalState.java"
include
"**/source/java/ch/systemsx/cisd/**/etlserver/registrator/*.java"
include
"**/source/java/ch/systemsx/cisd/common/mail/*.java"
}}
classpath
=
configurations
.
javadoc_compilation
maxMemory
=
"1024m"
}
build
.
dependsOn
zip
build
.
dependsOn
zipDss
build
.
dependsOn
clientsAndApis
build
.
dependsOn
dssUploadGuiStandaloneZip
build
.
dependsOn
dssUploadGuiStandaloneJar
\ No newline at end of file
build
.
dependsOn
dssUploadGuiStandaloneJar
build
.
dependsOn
generateJavadoc
\ 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