Skip to content

Commit 0c4e887

Browse files
committed
chore: fix publishing
Signed-off-by: Stephane Bouchet <[email protected]>
1 parent a94c6cd commit 0c4e887

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ dependencies {
2525

2626

2727
java {
28+
toolchain {
29+
languageVersion = JavaLanguageVersion.of(17)
30+
}
2831
withSourcesJar()
2932
withJavadocJar()
3033
}
@@ -54,8 +57,6 @@ publishing {
5457
publications {
5558
create<MavenPublication>("mavenJava") {
5659
from(components["java"])
57-
artifact(tasks.named("sourcesJar"))
58-
artifact(tasks.named("javadocJar"))
5960
pom {
6061
name.set("IntelliJ common UI test library")
6162
description.set("Common utilities for IntelliJ UI testing")

0 commit comments

Comments
 (0)