Skip to content

Commit

Permalink
Add Javadoc and sources JAR tasks; upgrade plugin version
Browse files Browse the repository at this point in the history
Added tasks to create Javadoc and sources JAR files in multiple modules. Upgraded the `io.github.gradle-nexus.publish-plugin` to version 2.0.0. Removed release placeholder from user documentation.
  • Loading branch information
holgerbrandl committed Oct 15, 2024
1 parent 27e4be0 commit 550f7dd
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ plugins {
`maven-publish`
signing

id("io.github.gradle-nexus.publish-plugin") version "1.2.0"
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
}

version = "1.0"
version = "1.0.0"


allprojects {
Expand Down
1 change: 0 additions & 1 deletion docs/userguide/docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

## 1.0

!! not yet released!

Major & Breaking API Changes

Expand Down
6 changes: 6 additions & 0 deletions modules/kravis/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ publishing {
}


java {
withJavadocJar()
withSourcesJar()
}



signing {
sign(publishing.publications["maven"])
Expand Down
6 changes: 6 additions & 0 deletions modules/letsplot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ publishing {
}


java {
withJavadocJar()
withSourcesJar()
}



signing {
sign(publishing.publications["maven"])
Expand Down
6 changes: 6 additions & 0 deletions modules/notebook/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ publishing {
}


java {
withJavadocJar()
withSourcesJar()
}


signing {
sign(publishing.publications["maven"])
}
Expand Down

0 comments on commit 550f7dd

Please sign in to comment.