forked from StarOpenSource/Engine
Enable javadoc and source jar upload
This commit is contained in:
parent
d36e36a1d3
commit
10abe1d3f0
2 changed files with 12 additions and 0 deletions
|
@ -140,6 +140,12 @@ test {
|
|||
}
|
||||
}
|
||||
|
||||
// Include javadoc and source jar during publishing
|
||||
java {
|
||||
withJavadocJar()
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
// Build publishing configuration
|
||||
// Note: You can safely ignore any errors or warnings thrown by your IDE here
|
||||
publishing {
|
||||
|
|
|
@ -80,6 +80,12 @@ javadoc {
|
|||
}
|
||||
}
|
||||
|
||||
// Include javadoc and source jar during publishing
|
||||
java {
|
||||
withJavadocJar()
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
// Build publishing configuration
|
||||
// Note: You can safely ignore any errors or warnings thrown by your IDE here
|
||||
publishing {
|
||||
|
|
Loading…
Reference in a new issue