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 594e814 commit a3dba77Copy full SHA for a3dba77
build.gradle.kts
@@ -263,7 +263,7 @@ subprojects {
263
}
264
265
val testJar = tasks.register<Jar>("testJar") {
266
- baseName = "${project.name}-test"
+ archiveBaseName.set("${project.name}-test")
267
from(sourceSets.test.get().output)
268
from(sourceSets.getByName("integrationTest").output)
269
jetbrains-rider/build.gradle.kts
@@ -220,7 +220,7 @@ fun getNugetPackagesPath(): File {
220
221
222
dependencies {
223
- compile(project(":jetbrains-core"))
+ implementation(project(":jetbrains-core"))
224
testImplementation(project(":jetbrains-core", "testArtifacts"))
225
226
0 commit comments