File tree Expand file tree Collapse file tree 3 files changed +18
-18
lines changed Expand file tree Collapse file tree 3 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ $ ./gradlew clean kotlinDslAccessorsReport
98
98
# Runs all checks
99
99
$ ./gradlew clean check
100
100
101
- # Check tasks dependencies
101
+ # Check tasks dependencies
102
102
$ ./gradlew clean build --dry-run
103
103
104
104
# Dep version updates
@@ -200,4 +200,4 @@ https://github.com/melix/jdoctor
200
200
[sty_img]: https://img.shields.io/badge/style-Kotlin--Official-40c4ff.svg? style=for-the-badge& logo=kotlin& logoColor=40c4ff
201
201
202
202
[ktlint_url]: https://ktlint.github.io/
203
- [ktlint_img]: https://img.shields.io/badge/code%20style-%E2%9D%A4-FF4081.svg? logo=kotlin& style=for-the-badge& logoColor=FF4081
203
+ [ktlint_img]: https://img.shields.io/badge/code%20style-%E2%9D%A4-FF4081.svg? logo=kotlin& style=for-the-badge& logoColor=FF4081
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ case "`uname`" in
72
72
Darwin* )
73
73
darwin=true
74
74
;;
75
- MINGW* )
75
+ MSYS * | MINGW* )
76
76
msys=true
77
77
;;
78
78
NONSTOP* )
Original file line number Diff line number Diff line change @@ -8,25 +8,25 @@ includeBuild("build-logic")
8
8
9
9
// Centralizing repositories declaration
10
10
dependencyResolutionManagement {
11
- repositories {
12
- mavenCentral()
13
- google()
14
- }
15
- repositoriesMode.set(RepositoriesMode .PREFER_SETTINGS )
11
+ repositories {
12
+ mavenCentral()
13
+ google()
14
+ }
15
+ repositoriesMode.set(RepositoriesMode .PREFER_SETTINGS )
16
16
}
17
17
18
18
// For plugin EAP versions
19
19
pluginManagement {
20
- repositories {
21
- gradlePluginPortal()
22
- google()
23
- }
20
+ repositories {
21
+ gradlePluginPortal()
22
+ google()
23
+ }
24
24
25
- resolutionStrategy {
26
- eachPlugin {
27
- when (requested.id.id) {
28
- " kotlinx-atomicfu" -> useModule(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:${requested.version} " )
29
- }
30
- }
25
+ resolutionStrategy {
26
+ eachPlugin {
27
+ when (requested.id.id) {
28
+ " kotlinx-atomicfu" -> useModule(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:${requested.version} " )
29
+ }
31
30
}
31
+ }
32
32
}
You can’t perform that action at this time.
0 commit comments