| author | Da Risk <da_risk@geekorum.com> |
| Wed, 03 Jan 2024 15:26:40 -0400 | |
| changeset 1174 | 731f6ee517b6 |
| parent 1077 | e969cb67f90d |
| child 1370 | 13e39ef920a8 |
| permissions | -rw-r--r-- |
| 611 | 1 |
/* |
| 0 | 2 |
* Geekttrss is a RSS feed reader application on the Android Platform. |
3 |
* |
|
| 1174 | 4 |
* Copyright (C) 2017-2024 by Frederic-Charles Barthelery. |
| 0 | 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 |
||
| 566 | 22 |
pluginManagement {
|
| 0 | 23 |
repositories {
|
24 |
gradlePluginPortal() |
|
|
809
a1586e51358d
build: remove jcenter() use mavenCentral()
Da Risk <da_risk@geekorum.com>
parents:
717
diff
changeset
|
25 |
mavenCentral() |
| 0 | 26 |
google() |
27 |
} |
|
28 |
resolutionStrategy {
|
|
29 |
eachPlugin {
|
|
| 566 | 30 |
when (requested.id.id) {
|
|
941
dd7a7a2adb1c
build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
926
diff
changeset
|
31 |
"com.google.android.gms.oss-licenses-plugin" -> useModule("com.google.android.gms:oss-licenses-plugin:${requested.version}")
|
|
dd7a7a2adb1c
build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
926
diff
changeset
|
32 |
"com.google.gms.google-services" -> useModule("com.google.gms:google-services:${requested.version}")
|
|
dd7a7a2adb1c
build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
926
diff
changeset
|
33 |
"dagger.hilt.android.plugin" -> useModule("com.google.dagger:hilt-android-gradle-plugin:${requested.version}")
|
| 0 | 34 |
} |
35 |
} |
|
36 |
} |
|
37 |
} |
|
38 |
||
|
1017
8c69913c9e38
build: add jvm toolchain resolver plugin
Da Risk <da_risk@geekorum.com>
parents:
944
diff
changeset
|
39 |
plugins {
|
|
8c69913c9e38
build: add jvm toolchain resolver plugin
Da Risk <da_risk@geekorum.com>
parents:
944
diff
changeset
|
40 |
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
|
|
8c69913c9e38
build: add jvm toolchain resolver plugin
Da Risk <da_risk@geekorum.com>
parents:
944
diff
changeset
|
41 |
} |
|
8c69913c9e38
build: add jvm toolchain resolver plugin
Da Risk <da_risk@geekorum.com>
parents:
944
diff
changeset
|
42 |
|
| 0 | 43 |
include(":app")
|
|
178
d5a489985531
Add a manage_feeds on demand feature module
Da Risk <da_risk@geekorum.com>
parents:
114
diff
changeset
|
44 |
include(":manage_feeds")
|
|
307
f1b40d8534be
extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
228
diff
changeset
|
45 |
include(":htmlparsers")
|
|
310
bd0611482474
Extract tinyrss web api to a new module "webapi"
Da Risk <da_risk@geekorum.com>
parents:
307
diff
changeset
|
46 |
include(":webapi")
|
| 446 | 47 |
include(":faviKonSnoop")
|
| 0 | 48 |
|
49 |
val GEEKDROID_PROJECT_DIR: String? by settings |
|
50 |
GEEKDROID_PROJECT_DIR?.let {
|
|
51 |
includeBuild(it) {
|
|
52 |
dependencySubstitution {
|
|
|
863
71dca4f9acac
build: remove jcenter/bintray repositories
Da Risk <da_risk@geekorum.com>
parents:
809
diff
changeset
|
53 |
substitute(module("com.geekorum:geekdroid")).using(project(":geekdroid"))
|
|
71dca4f9acac
build: remove jcenter/bintray repositories
Da Risk <da_risk@geekorum.com>
parents:
809
diff
changeset
|
54 |
substitute(module("com.geekorum:geekdroid-firebase")).using(project(":geekdroid-firebase"))
|
|
71dca4f9acac
build: remove jcenter/bintray repositories
Da Risk <da_risk@geekorum.com>
parents:
809
diff
changeset
|
55 |
substitute(module("com.geekorum.geekdroid:geekdroid")).using(project(":geekdroid"))
|
|
71dca4f9acac
build: remove jcenter/bintray repositories
Da Risk <da_risk@geekorum.com>
parents:
809
diff
changeset
|
56 |
substitute(module("com.geekorum.geekdroid:geekdroid-firebase")).using(project(":geekdroid-firebase"))
|
| 0 | 57 |
} |
58 |
} |
|
59 |
} |