@@ -8,41 +8,20 @@ import kotlin.String
8
8
*/
9
9
object Libs {
10
10
/* *
11
- * http ://developer.android.com/tools/extras/support-library.html
11
+ * https ://developer.android.com/jetpack/androidx
12
12
*/
13
13
const val appcompat: String = " androidx.appcompat:appcompat:" + Versions .appcompat
14
14
15
15
/* *
16
- * https ://developer .android.com/reference/android/support/constraint/ConstraintLayout
16
+ * http ://tools .android.com
17
17
*/
18
- const val constraintLayout = " androidx.constraintlayout:constraintlayout:" + Versions .constraint_layout
18
+ const val constraintlayout: String = " androidx.constraintlayout:constraintlayout:" +
19
+ Versions .constraintlayout
19
20
20
21
/* *
21
- * https://developer.android.com/guide/topics/ui/layout/recyclerview
22
+ * https://developer.android.com/jetpack/androidx
22
23
*/
23
- const val recyclerView = " androidx.recyclerview:recyclerview:" + Versions .recycler_view
24
-
25
- /* *
26
- * https://developer.android.com/testing
27
- */
28
- const val espresso_core: String = " androidx.test.espresso:espresso-core:" + Versions .espresso_core
29
-
30
- /* *
31
- * https://developer.android.com/testing
32
- */
33
- const val androidx_test_runner: String = " androidx.test:runner:" + Versions .androidx_test_runner
34
-
35
- /* *
36
- * https://github.com/robstoll/atrium
37
- */
38
- const val atrium_cc_en_gb_robstoll_common: String =
39
- " ch.tutteli.atrium:atrium-cc-en_GB-robstoll-common:" + Versions .atrium
40
-
41
- /* *
42
- * https://github.com/robstoll/atrium
43
- */
44
- const val atrium_cc_en_gb_robstoll: String = " ch.tutteli.atrium:atrium-cc-en_GB-robstoll:" +
45
- Versions .atrium
24
+ const val recyclerview: String = " androidx.recyclerview:recyclerview:" + Versions .recyclerview
46
25
47
26
/* *
48
27
* https://developer.android.com/studio
@@ -67,17 +46,12 @@ object Libs {
67
46
/* *
68
47
* http://mockk.io
69
48
*/
70
- const val mockk_common: String = " io.mockk:mockk-common:" + Versions .mockk
49
+ const val mockk_common: String = " io.mockk:mockk-common:" + Versions .io_mockk
71
50
72
51
/* *
73
52
* http://mockk.io
74
53
*/
75
- const val mockk: String = " io.mockk:mockk:" + Versions .mockk
76
-
77
- /* *
78
- * http://junit.org
79
- */
80
- const val junit: String = " junit:junit:" + Versions .junit
54
+ const val mockk: String = " io.mockk:mockk:" + Versions .io_mockk
81
55
82
56
const val dokka_gradle_plugin: String = " org.jetbrains.dokka:dokka-gradle-plugin:" +
83
57
Versions .dokka_gradle_plugin
@@ -100,12 +74,18 @@ object Libs {
100
74
const val kotlin_annotation_processing_gradle: String =
101
75
" org.jetbrains.kotlin:kotlin-annotation-processing-gradle:" + Versions .org_jetbrains_kotlin
102
76
77
+ const val kotlin_compiler_embeddable: String =
78
+ " org.jetbrains.kotlin:kotlin-compiler-embeddable:" + Versions .org_jetbrains_kotlin
79
+
103
80
/* *
104
81
* https://kotlinlang.org/
105
82
*/
106
83
const val kotlin_gradle_plugin: String = " org.jetbrains.kotlin:kotlin-gradle-plugin:" +
107
84
Versions .org_jetbrains_kotlin
108
85
86
+ const val kotlin_klib_commonizer_embeddable: String =
87
+ " org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:" + Versions .org_jetbrains_kotlin
88
+
109
89
/* *
110
90
* https://kotlinlang.org/
111
91
*/
@@ -119,7 +99,7 @@ object Libs {
119
99
" org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:" + Versions .org_jetbrains_kotlin
120
100
121
101
/* *
122
- * https://kotlinlang.org/
102
+ * 1.3.72
123
103
*/
124
104
const val kotlin_stdlib_common: String = " org.jetbrains.kotlin:kotlin-stdlib-common:" +
125
105
Versions .org_jetbrains_kotlin
@@ -131,13 +111,13 @@ object Libs {
131
111
Versions .org_jetbrains_kotlin
132
112
133
113
/* *
134
- * https://kotlinlang.org/
114
+ * 1.3.72
135
115
*/
136
116
const val kotlin_stdlib_js: String = " org.jetbrains.kotlin:kotlin-stdlib-js:" +
137
117
Versions .org_jetbrains_kotlin
138
118
139
119
/* *
140
- * https://kotlinlang.org/
120
+ * 1.3.72
141
121
*/
142
122
const val kotlin_stdlib: String = " org.jetbrains.kotlin:kotlin-stdlib:" +
143
123
Versions .org_jetbrains_kotlin
@@ -172,21 +152,32 @@ object Libs {
172
152
const val kotlin_test: String = " org.jetbrains.kotlin:kotlin-test:" +
173
153
Versions .org_jetbrains_kotlin
174
154
175
- const val spek_dsl_jvm : String = " org.spekframework.spek2:spek-dsl-jvm: " +
176
- Versions .spek
177
-
178
- const val spek_dsl_metadata : String = " org.spekframework.spek2:spek-dsl-metadata :" +
179
- Versions .spek
155
+ /* *
156
+ * https://github.com/Kotlin/atomicfu
157
+ */
158
+ const val atomicfu_gradle_plugin : String = " org.jetbrains.kotlinx:atomicfu-gradle-plugin :" +
159
+ Versions .atomicfu_gradle_plugin
180
160
181
- const val spek_runner_junit5: String = " org.spekframework.spek2:spek-runner-junit5:" +
182
- Versions .spek
161
+ /* *
162
+ * https://github.com/Kotlin/atomicfu
163
+ */
164
+ const val atomicfu: String = " org.jetbrains.kotlinx:atomicfu:" + Versions .atomicfu
183
165
184
- const val kotlin_coroutines: String = " org.jetbrains.kotlinx:kotlinx-coroutines-core:" +
185
- Versions .coroutines
166
+ /* *
167
+ * https://github.com/Kotlin/kotlinx.coroutines
168
+ */
169
+ const val kotlinx_coroutines_core_jvm: String =
170
+ " org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:" + Versions .kotlinx_coroutines_core_jvm
186
171
187
- const val kotlin_coroutines_jvm: String = " org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:" +
188
- Versions .coroutines
172
+ /* *
173
+ * https://github.com/Kotlin/kotlinx.coroutines
174
+ */
175
+ const val kotlinx_coroutines_core: String = " org.jetbrains.kotlinx:kotlinx-coroutines-core:" +
176
+ Versions .kotlinx_coroutines_core
189
177
190
- const val kotlin_coroutines_test: String = " org.jetbrains.kotlinx:kotlinx-coroutines-test:" +
191
- Versions .coroutines
178
+ /* *
179
+ * https://github.com/Kotlin/kotlinx.coroutines
180
+ */
181
+ const val kotlinx_coroutines_test: String = " org.jetbrains.kotlinx:kotlinx-coroutines-test:" +
182
+ Versions .kotlinx_coroutines_test
192
183
}
0 commit comments