Skip to content

Commit 6885100

Browse files
committed
Use public Teamcity for artifacts resolution
1 parent 952e467 commit 6885100

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
kotlinVersion=1.4.255-SNAPSHOT
2-
# kotlinVersion=1.4.20-dev-3647
1+
# kotlinVersion=1.4.255-SNAPSHOT
2+
kotlinVersion=1.4.30-dev-1975
33
kotlinLanguageLevel=1.4
44
jvmTarget=1.8
55

settings.gradle.kts

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ pluginManagement {
99
mavenLocal()
1010
mavenCentral()
1111
// only when using Kotlin EAP releases ...
12-
maven { url = uri("https://dl.bintray.com/kotlin/kotlin-eap") }
13-
maven { url = uri("https://dl.bintray.com/kotlin/kotlin-dev") }
12+
maven("https://dl.bintray.com/kotlin/kotlin-eap")
13+
14+
val teamcityUrl = "https://teamcity.jetbrains.com"
15+
val teamcityProjectId = "Kotlin_KotlinPublic_Aggregate"
16+
maven("$teamcityUrl/guestAuth/app/rest/builds/buildType:(id:$teamcityProjectId),number:$kotlinVersion,branch:default:any/artifacts/content/maven")
1417

1518
// Used for TeamCity build
1619
val m2LocalPath = File(".m2/repository")

0 commit comments

Comments
 (0)