Skip to content

Commit

Permalink
chore: fix publishing
Browse files Browse the repository at this point in the history
Signed-off-by: Stephane Bouchet <[email protected]>
  • Loading branch information
sbouchet committed Jan 8, 2025
1 parent a94c6cd commit 0c4e887
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ dependencies {


java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
withSourcesJar()
withJavadocJar()
}
Expand Down Expand Up @@ -54,8 +57,6 @@ publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
artifact(tasks.named("sourcesJar"))
artifact(tasks.named("javadocJar"))
pom {
name.set("IntelliJ common UI test library")
description.set("Common utilities for IntelliJ UI testing")
Expand Down

0 comments on commit 0c4e887

Please sign in to comment.