We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d029d8 commit 42c0eefCopy full SHA for 42c0eef
settings.gradle.kts
@@ -11,6 +11,12 @@ pluginManagement {
11
// 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") }
14
+
15
+ // Used for TeamCity build
16
+ val m2LocalPath = File(".m2/repository")
17
+ if (m2LocalPath.exists()) {
18
+ maven(m2LocalPath.toURI())
19
+ }
20
}
21
22
resolutionStrategy {
0 commit comments