Add support for proxies to scripts
Update jcabi-aether dependency from 0.10.1 to 1.0-SNAPSHOT. In order to do that, add https://oss.sonatype.org/content/repositories/snapshots to the repositories in tools/kotlin-script-util/build.gradle.kts Script dependencies are resolved using jcabi-aether. Unfortunately "stable" release (0.10.1) does not support proxies. Therefore, script dependencies are not pulled behind a proxy. Issue is fixed in SNAPSHOT release of jcabi-aether. FIXED: KT-22363
This commit is contained in:
committed by
Ilya Chernikov
parent
e3eda012c4
commit
a9280cdbcd
@@ -6,6 +6,10 @@ plugins {
|
|||||||
id("jps-compatible")
|
id("jps-compatible")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven(url = "https://oss.sonatype.org/content/repositories/snapshots") // for jcabi-aether:1.0-SNAPSHOT
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile(project(":kotlin-stdlib"))
|
compile(project(":kotlin-stdlib"))
|
||||||
compile(project(":kotlin-script-runtime"))
|
compile(project(":kotlin-script-runtime"))
|
||||||
@@ -13,7 +17,7 @@ dependencies {
|
|||||||
compileOnly(project(":compiler:cli"))
|
compileOnly(project(":compiler:cli"))
|
||||||
compileOnly(project(":compiler:daemon-common"))
|
compileOnly(project(":compiler:daemon-common"))
|
||||||
compile(projectRuntimeJar(":kotlin-daemon-client"))
|
compile(projectRuntimeJar(":kotlin-daemon-client"))
|
||||||
compileOnly("com.jcabi:jcabi-aether:0.10.1")
|
compileOnly("com.jcabi:jcabi-aether:1.0-SNAPSHOT")
|
||||||
compileOnly("org.sonatype.aether:aether-api:1.13.1")
|
compileOnly("org.sonatype.aether:aether-api:1.13.1")
|
||||||
compileOnly("org.apache.maven:maven-core:3.0.3")
|
compileOnly("org.apache.maven:maven-core:3.0.3")
|
||||||
testCompileOnly(project(":compiler:cli"))
|
testCompileOnly(project(":compiler:cli"))
|
||||||
@@ -21,7 +25,7 @@ dependencies {
|
|||||||
testRuntime(project(":kotlin-reflect"))
|
testRuntime(project(":kotlin-reflect"))
|
||||||
testCompile(commonDep("junit:junit"))
|
testCompile(commonDep("junit:junit"))
|
||||||
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
|
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
|
||||||
testRuntime("com.jcabi:jcabi-aether:0.10.1")
|
testRuntime("com.jcabi:jcabi-aether:1.0-SNAPSHOT")
|
||||||
testRuntime("org.sonatype.aether:aether-api:1.13.1")
|
testRuntime("org.sonatype.aether:aether-api:1.13.1")
|
||||||
testRuntime("org.apache.maven:maven-core:3.0.3")
|
testRuntime("org.apache.maven:maven-core:3.0.3")
|
||||||
compileOnly(intellijDep()) { includeJars("openapi", "util") }
|
compileOnly(intellijDep()) { includeJars("openapi", "util") }
|
||||||
|
|||||||
Reference in New Issue
Block a user