Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
acdc
repository-extension-services
Commits
5a40d581
Commit
5a40d581
authored
Nov 15, 2018
by
Aaron Coburn
Browse files
Update build configuration
parent
82cd142d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
build.gradle
build.gradle
+16
-16
No files found.
build.gradle
View file @
5a40d581
...
...
@@ -251,6 +251,22 @@ subprojects { subproj ->
options
.
addBooleanOption
(
'html5'
,
true
)
}
}
task
docs
(
type:
Javadoc
)
{
outputs
.
upToDateWhen
{
false
}
source
subprojects
.
collect
{
project
->
project
.
sourceSets
.
main
.
allJava
}
classpath
=
files
(
subprojects
.
collect
{
project
->
project
.
sourceSets
.
main
.
compileClasspath
})
destinationDir
=
new
File
(
projectDir
,
"docs/${version}"
)
options
{
links
"http://docs.oracle.com/javase/8/docs/api/"
links
"http://camel.apache.org/maven/current/camel-core/apidocs/"
links
"http://marmotta.apache.org/apidocs/"
links
"https://jena.apache.org/documentation/javadoc/jena/"
}
}
afterReleaseBuild
.
dependsOn
docs
afterReleaseBuild
.
dependsOn
publish
}
// Ignore alpha, beta, milestone and release candidates
...
...
@@ -267,19 +283,3 @@ dependencyUpdates.resolutionStrategy = {
}
}
task
docs
(
type:
Javadoc
)
{
outputs
.
upToDateWhen
{
false
}
source
subprojects
.
collect
{
project
->
project
.
sourceSets
.
main
.
allJava
}
classpath
=
files
(
subprojects
.
collect
{
project
->
project
.
sourceSets
.
main
.
compileClasspath
})
destinationDir
=
new
File
(
projectDir
,
"docs/${version}"
)
options
{
links
"http://docs.oracle.com/javase/8/docs/api/"
links
"http://camel.apache.org/maven/current/camel-core/apidocs/"
links
"http://marmotta.apache.org/apidocs/"
links
"https://jena.apache.org/documentation/javadoc/jena/"
}
}
afterReleaseBuild
.
dependsOn
docs
afterReleaseBuild
.
dependsOn
publish
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment