Build: Fix deprecated Gradle configurations usages
for migration to Gradle 7+ #KTI-559
This commit is contained in:
@@ -4,21 +4,21 @@ plugins {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testCompile(projectTests(":compiler"))
|
||||
testApi(projectTests(":compiler"))
|
||||
testImplementation(projectTests(":compiler:test-infrastructure"))
|
||||
testImplementation(projectTests(":compiler:tests-common-new"))
|
||||
|
||||
testCompile(intellijDep()) {
|
||||
testApi(intellijDep()) {
|
||||
includeJars("groovy", "groovy-xml", rootProject = rootProject)
|
||||
}
|
||||
testCompile(intellijDep()) {
|
||||
testApi(intellijDep()) {
|
||||
includeJars("gson", rootProject = rootProject)
|
||||
}
|
||||
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
testRuntimeOnly(intellijPluginDep("java"))
|
||||
compile("org.jsoup:jsoup:1.14.2")
|
||||
api("org.jsoup:jsoup:1.14.2")
|
||||
if (isIdeaActive) testRuntimeOnly(files("${rootProject.projectDir}/dist/kotlinc/lib/kotlin-reflect.jar"))
|
||||
testRuntime(project(":kotlin-reflect"))
|
||||
testRuntimeOnly(project(":kotlin-reflect"))
|
||||
|
||||
testApiJUnit5(vintageEngine = true)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user