File tree 3 files changed +27
-0
lines changed
3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 3
3
*/
4
4
5
5
pluginManagement {
6
+ // Add repositories required for build-settings-logic
7
+ repositories {
8
+ gradlePluginPortal()
9
+
10
+ // Should be in sync with ktorsettings.kotlin-user-project
11
+ val kotlinRepoUrl = providers.gradleProperty(" kotlin_repo_url" ).orNull
12
+ if (kotlinRepoUrl != null ) maven(kotlinRepoUrl) { name = " KotlinDev" }
13
+ }
14
+
6
15
includeBuild(" ../build-settings-logic" )
7
16
}
8
17
Original file line number Diff line number Diff line change 3
3
*/
4
4
5
5
pluginManagement {
6
+ // Add repositories required for build-settings-logic
7
+ repositories {
8
+ gradlePluginPortal()
9
+
10
+ // Should be in sync with ktorsettings.kotlin-user-project
11
+ val kotlinRepoUrl = providers.gradleProperty(" kotlin_repo_url" ).orNull
12
+ if (kotlinRepoUrl != null ) maven(kotlinRepoUrl) { name = " KotlinDev" }
13
+ }
14
+
6
15
includeBuild(" ../build-settings-logic" )
7
16
}
8
17
Original file line number Diff line number Diff line change @@ -6,6 +6,15 @@ enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
6
6
enableFeaturePreview(" TYPESAFE_PROJECT_ACCESSORS" )
7
7
8
8
pluginManagement {
9
+ // Add repositories required for build-settings-logic
10
+ repositories {
11
+ gradlePluginPortal()
12
+
13
+ // Should be in sync with ktorsettings.kotlin-user-project
14
+ val kotlinRepoUrl = providers.gradleProperty(" kotlin_repo_url" ).orNull
15
+ if (kotlinRepoUrl != null ) maven(kotlinRepoUrl) { name = " KotlinDev" }
16
+ }
17
+
9
18
includeBuild(" build-settings-logic" )
10
19
}
11
20
You can’t perform that action at this time.
0 commit comments