Skip to content

Commit

Permalink
Fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
arkanovicz committed Dec 29, 2024
1 parent e814684 commit ad7dc46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
9 changes: 1 addition & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id("org.jetbrains.dokka") version "1.5.0"
application
`maven-publish`
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
signing
}

Expand Down Expand Up @@ -137,13 +137,6 @@ application {
mainClass.set("com.republicate.kddl.MainKt")
}

signing {
if (project.hasProperty("production")) {
useGpgCmd()
sign(publishing.publications)
}
}

publishing {
publications.withType<MavenPublication> {
pom {
Expand Down
4 changes: 2 additions & 2 deletions kddl-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ buildscript {
}

group = "com.republicate.kddl"
version = "0.9-SNAPSHOT"
version = "0.9"

dependencies {
implementation(gradleApi())
Expand Down Expand Up @@ -67,7 +67,7 @@ gradlePlugin {
create("KddlPlugin") {
id = "kddl-gradle-plugin"
implementationClass = "com.republicate.kddl.KddlGradlePlugin"
version = "0.9-SNAPSHOT"
version = "0.9"
}
}
isAutomatedPublishing = false
Expand Down

0 comments on commit ad7dc46

Please sign in to comment.