Enable javadoc and source jar upload

This commit is contained in:
JeremyStar™ 2024-07-18 01:25:23 +02:00
parent d36e36a1d3
commit 10abe1d3f0
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
2 changed files with 12 additions and 0 deletions

View file

@ -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 {

View file

@ -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 {