Skip to content

Commit

Permalink
remove duplicated publishing config
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkobor committed Jan 18, 2024
1 parent 8819127 commit 143cab8
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,26 +82,3 @@ java {
withJavadocJar()
withSourcesJar()
}

publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/lovelysystems/lovely-jooq")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_USER")
password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
}
publications {
register<MavenPublication>("gpr") {
from(components["java"])
}
}
}

java {
withJavadocJar()
withSourcesJar()
}

0 comments on commit 143cab8

Please sign in to comment.