Build: Publish jcabi-aether-1.0-SNAPSHOT to kotlin-dependencies as 1.0-dev-3

This allows to remove dependency on snapshot repository
https://oss.sonatype.org/content/repositories/snapshots
This commit is contained in:
Vyacheslav Gerasimov
2019-05-24 17:31:42 +03:00
parent 9a9acd0fc1
commit 6b3f341ab5
4 changed files with 56 additions and 8 deletions
@@ -6,10 +6,6 @@ plugins {
id("jps-compatible")
}
repositories {
maven(url = "https://oss.sonatype.org/content/repositories/snapshots") // for jcabi-aether:1.0-SNAPSHOT
}
dependencies {
compile(kotlinStdlib())
compile(project(":kotlin-script-runtime"))
@@ -19,7 +15,7 @@ dependencies {
compileOnly(project(":daemon-common"))
compileOnly(project(":kotlin-scripting-compiler"))
compile(projectRuntimeJar(":kotlin-daemon-client"))
compileOnly("com.jcabi:jcabi-aether:1.0-SNAPSHOT")
compileOnly("org.jetbrains.kotlin:jcabi-aether:1.0-dev-3")
compileOnly("org.sonatype.aether:aether-api:1.13.1")
compileOnly("org.apache.maven:maven-core:3.0.3")
testCompileOnly(project(":compiler:cli"))
@@ -28,7 +24,7 @@ dependencies {
testCompile(commonDep("junit:junit"))
testCompile(project(":kotlin-scripting-compiler"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testRuntime("com.jcabi:jcabi-aether:1.0-SNAPSHOT")
testRuntime("org.jetbrains.kotlin:jcabi-aether:1.0-dev-3")
testRuntime("org.sonatype.aether:aether-api:1.13.1")
testRuntime("org.apache.maven:maven-core:3.0.3")
compileOnly(intellijDep()) { includeJars("openapi", "util") }