Skip to content

Commit

Permalink
enable source and javaDoc jars and fix version (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinSchramm authored May 27, 2023
1 parent ba37f92 commit b6fca17
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
}

group = "io.hndrs.gradle"
version = "1.0.0-local"
version = "1.0.0"

repositories {
mavenCentral()
Expand All @@ -40,6 +40,11 @@ gradlePlugin {
}
}

java {
withJavadocJar()
withSourcesJar()
}

val signingKey: String? by project
val signingPassword: String? by project
if (signingKey != null && signingPassword != null) {
Expand Down

0 comments on commit b6fca17

Please sign in to comment.