[Scripting] Change compile to implementation in Maven resolver

This commit is contained in:
Ilya Muradyan
2021-05-20 00:18:56 +03:00
committed by TeamCityServer
parent bead0e3412
commit 0e7d690923
@@ -5,7 +5,7 @@ plugins {
jvmTarget = "1.6" jvmTarget = "1.6"
configurations.compile { configurations.implementation {
/** /**
* Files with the same FQNs may exist both in these excluded artifacts and in dependencies of * Files with the same FQNs may exist both in these excluded artifacts and in dependencies of
* `org.apache.maven:maven-core`. If these classes fall into classpath together, it * `org.apache.maven:maven-core`. If these classes fall into classpath together, it
@@ -22,15 +22,15 @@ configurations.compile {
} }
dependencies { dependencies {
compile(kotlinStdlib()) implementation(kotlinStdlib())
compile(project(":kotlin-scripting-dependencies")) implementation(project(":kotlin-scripting-dependencies"))
compile("org.eclipse.aether:aether-connector-basic:1.1.0") implementation("org.eclipse.aether:aether-connector-basic:1.1.0")
compile("org.eclipse.aether:aether-transport-wagon:1.1.0") implementation("org.eclipse.aether:aether-transport-wagon:1.1.0")
compile("org.eclipse.aether:aether-transport-file:1.1.0") implementation("org.eclipse.aether:aether-transport-file:1.1.0")
compile("org.apache.maven:maven-core:3.8.1") implementation("org.apache.maven:maven-core:3.8.1")
compile("org.apache.maven.wagon:wagon-http:3.4.3") implementation("org.apache.maven.wagon:wagon-http:3.4.3")
testCompile(projectTests(":kotlin-scripting-dependencies")) testImplementation(projectTests(":kotlin-scripting-dependencies"))
testCompile(commonDep("junit")) testImplementation(commonDep("junit"))
testRuntimeOnly("org.slf4j:slf4j-nop:1.7.30") testRuntimeOnly("org.slf4j:slf4j-nop:1.7.30")
testImplementation(kotlin("reflect")) testImplementation(kotlin("reflect"))
} }