File tree Expand file tree Collapse file tree 10 files changed +23
-23
lines changed
src/test/kotlin/com/baeldung Expand file tree Collapse file tree 10 files changed +23
-23
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,6 @@ This module contains articles about Kotlin Libraries.
6
6
7
7
- [ Jackson Support for Kotlin] ( https://www.baeldung.com/jackson-kotlin )
8
8
- [ Introduction to RxKotlin] ( https://www.baeldung.com/rxkotlin )
9
+ - [ MockK: A Mocking Library for Kotlin] ( https://www.baeldung.com/kotlin-mockk )
10
+ - [ Kotlin Immutable Collections] ( https://www.baeldung.com/kotlin-immutable-collections )
9
11
- More articles: [[ <-- prev]] ( /kotlin-libraries )
Original file line number Diff line number Diff line change 28
28
<artifactId >junit</artifactId >
29
29
<scope >test</scope >
30
30
</dependency >
31
+ <dependency >
32
+ <groupId >com.google.guava</groupId >
33
+ <artifactId >guava</artifactId >
34
+ <version >${guava.version} </version >
35
+ </dependency >
36
+ <!-- https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-collections-immutable -->
37
+ <dependency >
38
+ <groupId >org.jetbrains.kotlinx</groupId >
39
+ <artifactId >kotlinx-collections-immutable</artifactId >
40
+ <version >${kotlinx-collections-immutable.version} </version >
41
+ </dependency >
42
+ <!-- MockK dependencies-->
43
+ <dependency >
44
+ <groupId >io.mockk</groupId >
45
+ <artifactId >mockk</artifactId >
46
+ <version >${mockk.version} </version >
47
+ <scope >test</scope >
48
+ </dependency >
31
49
</dependencies >
32
50
33
51
<properties >
52
+ <guava .version>27.1-jre</guava .version>
53
+ <mockk .version>1.9.3</mockk .version>
54
+ <kotlinx-collections-immutable .version>0.1</kotlinx-collections-immutable .version>
34
55
</properties >
35
56
36
57
</project >
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -14,6 +14,4 @@ This module contains articles about Kotlin Libraries.
14
14
- [ Introduction to Arrow in Kotlin] ( https://www.baeldung.com/kotlin-arrow )
15
15
- [ Kotlin with Ktor] ( https://www.baeldung.com/kotlin-ktor )
16
16
- [ REST API With Kotlin and Kovert] ( https://www.baeldung.com/kotlin-kovert )
17
- - [ MockK: A Mocking Library for Kotlin] ( https://www.baeldung.com/kotlin-mockk )
18
- - [ Kotlin Immutable Collections] ( https://www.baeldung.com/kotlin-immutable-collections )
19
17
- More articles: [[ next -->]] ( /kotlin-libraries-2 )
Original file line number Diff line number Diff line change 129
129
<scope >test</scope >
130
130
</dependency >
131
131
132
- <dependency >
133
- <groupId >com.google.guava</groupId >
134
- <artifactId >guava</artifactId >
135
- <version >${guava.version} </version >
136
- </dependency >
137
- <!-- https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-collections-immutable -->
138
- <dependency >
139
- <groupId >org.jetbrains.kotlinx</groupId >
140
- <artifactId >kotlinx-collections-immutable</artifactId >
141
- <version >${kotlinx-collections-immutable.version} </version >
142
- </dependency >
143
132
144
- <!-- MockK dependencies-->
145
- <dependency >
146
- <groupId >io.mockk</groupId >
147
- <artifactId >mockk</artifactId >
148
- <version >${mockk.version} </version >
149
- <scope >test</scope >
150
- </dependency >
151
133
<dependency >
152
134
<groupId >net.bytebuddy</groupId >
153
135
<artifactId >byte-buddy</artifactId >
185
167
<junit .vintage.version>5.2.0</junit .vintage.version>
186
168
<assertj .version>3.10.0</assertj .version>
187
169
<exposed .version>0.10.4</exposed .version>
188
- <mockk .version>1.9.3</mockk .version>
189
- <guava .version>27.1-jre</guava .version>
190
170
<kovenant .version>3.3.0</kovenant .version>
191
171
<byte-buddy .version>1.8.13</byte-buddy .version>
192
172
<objenesis .version>2.6</objenesis .version>
193
173
<rxkotlin .version>2.3.0</rxkotlin .version>
194
- <kotlinx-collections-immutable .version>0.1</kotlinx-collections-immutable .version>
195
174
<arrow-core .version>0.7.3</arrow-core .version>
196
175
</properties >
197
176
You can’t perform that action at this time.
0 commit comments