Skip to content

Commit a3dba77

Browse files
authored
Fix remaining gradle7 deprecations (minus the ones from JB plugin) (#2421)
1 parent 594e814 commit a3dba77

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ subprojects {
263263
}
264264

265265
val testJar = tasks.register<Jar>("testJar") {
266-
baseName = "${project.name}-test"
266+
archiveBaseName.set("${project.name}-test")
267267
from(sourceSets.test.get().output)
268268
from(sourceSets.getByName("integrationTest").output)
269269
}

jetbrains-rider/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ fun getNugetPackagesPath(): File {
220220
}
221221

222222
dependencies {
223-
compile(project(":jetbrains-core"))
223+
implementation(project(":jetbrains-core"))
224224
testImplementation(project(":jetbrains-core", "testArtifacts"))
225225
}
226226

0 commit comments

Comments
 (0)