We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a94c6cd commit 0c4e887Copy full SHA for 0c4e887
build.gradle.kts
@@ -25,6 +25,9 @@ dependencies {
25
26
27
java {
28
+ toolchain {
29
+ languageVersion = JavaLanguageVersion.of(17)
30
+ }
31
withSourcesJar()
32
withJavadocJar()
33
}
@@ -54,8 +57,6 @@ publishing {
54
57
publications {
55
58
create<MavenPublication>("mavenJava") {
56
59
from(components["java"])
- artifact(tasks.named("sourcesJar"))
- artifact(tasks.named("javadocJar"))
60
pom {
61
name.set("IntelliJ common UI test library")
62
description.set("Common utilities for IntelliJ UI testing")
0 commit comments