@@ -8,41 +8,32 @@ import kotlin.String
88 */
99object Libs {
1010 /* *
11- * http ://developer.android.com/tools/extras/support-library.html
11+ * https ://developer.android.com/jetpack/androidx
1212 */
1313 const val appcompat: String = " androidx.appcompat:appcompat:" + Versions .appcompat
1414
1515 /* *
16- * https ://developer .android.com/reference/android/support/constraint/ConstraintLayout
16+ * http ://tools .android.com
1717 */
18- const val constraintLayout = " androidx.constraintlayout:constraintlayout:" + Versions .constraint_layout
18+ const val constraintlayout: String = " androidx.constraintlayout:constraintlayout:" +
19+ Versions .constraintlayout
1920
2021 /* *
21- * https://developer.android.com/guide/topics/ui/layout/recyclerview
22+ * https://developer.android.com/jetpack/androidx
2223 */
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
24+ const val recyclerview: String = " androidx.recyclerview:recyclerview:" + Versions .recyclerview
3425
3526 /* *
3627 * https://github.com/robstoll/atrium
3728 */
3829 const val atrium_cc_en_gb_robstoll_common: String =
39- " ch.tutteli.atrium:atrium-cc-en_GB-robstoll-common:" + Versions .atrium
30+ " ch.tutteli.atrium:atrium-cc-en_GB-robstoll-common:" + Versions .ch_tutteli_atrium
4031
4132 /* *
4233 * https://github.com/robstoll/atrium
4334 */
4435 const val atrium_cc_en_gb_robstoll: String = " ch.tutteli.atrium:atrium-cc-en_GB-robstoll:" +
45- Versions .atrium
36+ Versions .ch_tutteli_atrium
4637
4738 /* *
4839 * https://developer.android.com/studio
@@ -67,17 +58,12 @@ object Libs {
6758 /* *
6859 * http://mockk.io
6960 */
70- const val mockk_common: String = " io.mockk:mockk-common:" + Versions .mockk
61+ const val mockk_common: String = " io.mockk:mockk-common:" + Versions .io_mockk
7162
7263 /* *
7364 * http://mockk.io
7465 */
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
66+ const val mockk: String = " io.mockk:mockk:" + Versions .io_mockk
8167
8268 const val dokka_gradle_plugin: String = " org.jetbrains.dokka:dokka-gradle-plugin:" +
8369 Versions .dokka_gradle_plugin
@@ -100,12 +86,18 @@ object Libs {
10086 const val kotlin_annotation_processing_gradle: String =
10187 " org.jetbrains.kotlin:kotlin-annotation-processing-gradle:" + Versions .org_jetbrains_kotlin
10288
89+ const val kotlin_compiler_embeddable: String =
90+ " org.jetbrains.kotlin:kotlin-compiler-embeddable:" + Versions .org_jetbrains_kotlin
91+
10392 /* *
10493 * https://kotlinlang.org/
10594 */
10695 const val kotlin_gradle_plugin: String = " org.jetbrains.kotlin:kotlin-gradle-plugin:" +
10796 Versions .org_jetbrains_kotlin
10897
98+ const val kotlin_klib_commonizer_embeddable: String =
99+ " org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:" + Versions .org_jetbrains_kotlin
100+
109101 /* *
110102 * https://kotlinlang.org/
111103 */
@@ -119,7 +111,7 @@ object Libs {
119111 " org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:" + Versions .org_jetbrains_kotlin
120112
121113 /* *
122- * https://kotlinlang.org/
114+ * 1.3.72
123115 */
124116 const val kotlin_stdlib_common: String = " org.jetbrains.kotlin:kotlin-stdlib-common:" +
125117 Versions .org_jetbrains_kotlin
@@ -131,13 +123,13 @@ object Libs {
131123 Versions .org_jetbrains_kotlin
132124
133125 /* *
134- * https://kotlinlang.org/
126+ * 1.3.72
135127 */
136128 const val kotlin_stdlib_js: String = " org.jetbrains.kotlin:kotlin-stdlib-js:" +
137129 Versions .org_jetbrains_kotlin
138130
139131 /* *
140- * https://kotlinlang.org/
132+ * 1.3.72
141133 */
142134 const val kotlin_stdlib: String = " org.jetbrains.kotlin:kotlin-stdlib:" +
143135 Versions .org_jetbrains_kotlin
@@ -172,21 +164,41 @@ object Libs {
172164 const val kotlin_test: String = " org.jetbrains.kotlin:kotlin-test:" +
173165 Versions .org_jetbrains_kotlin
174166
175- const val spek_dsl_jvm: String = " org.spekframework.spek2:spek-dsl-jvm:" +
176- Versions .spek
167+ /* *
168+ * https://github.com/Kotlin/atomicfu
169+ */
170+ const val atomicfu_gradle_plugin: String = " org.jetbrains.kotlinx:atomicfu-gradle-plugin:" +
171+ Versions .atomicfu_gradle_plugin
177172
178- const val spek_dsl_metadata: String = " org.spekframework.spek2:spek-dsl-metadata:" +
179- Versions .spek
173+ /* *
174+ * https://github.com/Kotlin/atomicfu
175+ */
176+ const val atomicfu: String = " org.jetbrains.kotlinx:atomicfu:" + Versions .atomicfu
180177
181- const val spek_runner_junit5: String = " org.spekframework.spek2:spek-runner-junit5:" +
182- Versions .spek
178+ /* *
179+ * https://github.com/Kotlin/kotlinx.coroutines
180+ */
181+ const val kotlinx_coroutines_core_jvm: String =
182+ " org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:" + Versions .kotlinx_coroutines_core_jvm
183+
184+ /* *
185+ * https://github.com/Kotlin/kotlinx.coroutines
186+ */
187+ const val kotlinx_coroutines_core: String = " org.jetbrains.kotlinx:kotlinx-coroutines-core:" +
188+ Versions .kotlinx_coroutines_core
189+
190+ /* *
191+ * https://github.com/Kotlin/kotlinx.coroutines
192+ */
193+ const val kotlinx_coroutines_test: String = " org.jetbrains.kotlinx:kotlinx-coroutines-test:" +
194+ Versions .kotlinx_coroutines_test
183195
184- const val kotlin_coroutines : String = " org.jetbrains.kotlinx:kotlinx-coroutines-core :" +
185- Versions .coroutines
196+ const val spek_dsl_jvm : String = " org.spekframework.spek2:spek-dsl-jvm :" +
197+ Versions .org_spekframework_spek2
186198
187- const val kotlin_coroutines_jvm : String = " org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm :" +
188- Versions .coroutines
199+ const val spek_dsl_metadata : String = " org.spekframework.spek2:spek-dsl-metadata :" +
200+ Versions .org_spekframework_spek2
189201
190- const val kotlin_coroutines_test : String = " org.jetbrains.kotlinx:kotlinx-coroutines-test :" +
191- Versions .coroutines
202+ const val spek_runner_junit5 : String = " org.spekframework.spek2:spek-runner-junit5 :" +
203+ Versions .org_spekframework_spek2
192204}
0 commit comments