| author | Da Risk <da_risk@geekorum.com> |
| Fri, 06 Mar 2026 22:32:28 -0400 | |
| changeset 1398 | 4f26548c3773 |
| parent 1370 | 13e39ef920a8 |
| permissions | -rw-r--r-- |
| 446 | 1 |
/* |
2 |
* Geekttrss is a RSS feed reader application on the Android Platform. |
|
3 |
* |
|
| 1370 | 4 |
* Copyright (C) 2017-2025 by Frederic-Charles Barthelery. |
| 446 | 5 |
* |
6 |
* This file is part of Geekttrss. |
|
7 |
* |
|
8 |
* Geekttrss is free software: you can redistribute it and/or modify |
|
9 |
* it under the terms of the GNU General Public License as published by |
|
10 |
* the Free Software Foundation, either version 3 of the License, or |
|
11 |
* (at your option) any later version. |
|
12 |
* |
|
13 |
* Geekttrss is distributed in the hope that it will be useful, |
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
16 |
* GNU General Public License for more details. |
|
17 |
* |
|
18 |
* You should have received a copy of the GNU General Public License |
|
19 |
* along with Geekttrss. If not, see <http://www.gnu.org/licenses/>. |
|
20 |
*/ |
|
21 |
plugins {
|
|
|
1144
d6c1637eb4ab
build: use a convention plugin for kotlin-jvm
Da Risk <da_risk@geekorum.com>
parents:
1138
diff
changeset
|
22 |
id("com.geekorum.build.conventions.jvm-library")
|
|
1020
35d86e87cd75
build: don't use plugin aliases in project for now
Da Risk <da_risk@geekorum.com>
parents:
1013
diff
changeset
|
23 |
kotlin("plugin.serialization")
|
| 446 | 24 |
} |
25 |
||
26 |
dependencies {
|
|
27 |
implementation(kotlin("stdlib-jdk8"))
|
|
28 |
implementation(enforcedPlatform(kotlin("bom")))
|
|
29 |
||
|
941
dd7a7a2adb1c
build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
913
diff
changeset
|
30 |
api(platform(libs.okhttp.bom)) |
|
dd7a7a2adb1c
build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
913
diff
changeset
|
31 |
api(libs.okhttp) |
|
dd7a7a2adb1c
build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
913
diff
changeset
|
32 |
api(libs.okio) |
|
1052
43bf3f913017
faviKonSnoop: use suspend functions and coroutine dispatchers
Da Risk <da_risk@geekorum.com>
parents:
1020
diff
changeset
|
33 |
implementation(platform(libs.kotlinx.coroutines.bom)) |
|
43bf3f913017
faviKonSnoop: use suspend functions and coroutine dispatchers
Da Risk <da_risk@geekorum.com>
parents:
1020
diff
changeset
|
34 |
api(libs.kotlinx.coroutines.core) |
|
941
dd7a7a2adb1c
build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
913
diff
changeset
|
35 |
implementation(libs.javax.inject) |
|
1304
4575d4dba3b4
faviKonSnoop: use ksoup instead of jsoup
Da Risk <da_risk@geekorum.com>
parents:
1174
diff
changeset
|
36 |
implementation(libs.ksoup) |
|
941
dd7a7a2adb1c
build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
913
diff
changeset
|
37 |
implementation(libs.kotlinx.serialization.json.okio) |
| 446 | 38 |
|
|
941
dd7a7a2adb1c
build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
913
diff
changeset
|
39 |
testImplementation(libs.truth) |
| 446 | 40 |
testImplementation(kotlin("test-junit"))
|
|
941
dd7a7a2adb1c
build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
913
diff
changeset
|
41 |
testImplementation(libs.mockk) |
|
1052
43bf3f913017
faviKonSnoop: use suspend functions and coroutine dispatchers
Da Risk <da_risk@geekorum.com>
parents:
1020
diff
changeset
|
42 |
testImplementation(libs.kotlinx.coroutines.test) |
| 446 | 43 |
} |