Skip to content

Commit

Permalink
rdf-graphs: build.gradle -- version -> 1.0.0 + disable signMavenPubli…
Browse files Browse the repository at this point in the history
…cation task by default
  • Loading branch information
sszuev committed Mar 7, 2023
1 parent 1f870a1 commit 090d2bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.github.sszuev"
version = "1.0.0-SNAPSHOT"
version = "1.0.0"

repositories {
mavenCentral()
Expand Down Expand Up @@ -88,6 +88,10 @@ tasks.test {
useJUnitPlatform()
}

tasks.getByName("signMavenPublication") {
enabled = project.hasProperty("sign")
}

kotlin {
jvmToolchain(11)
}

0 comments on commit 090d2bd

Please sign in to comment.