buildSrc/settings.gradle.kts
author Da Risk <da_risk@geekorum.com>
Sun, 04 May 2025 20:51:03 -0400
changeset 77 79cf271b59ee
parent 34 ce299aacc068
permissions -rw-r--r--
workflow: add empty publish-website workflow
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     1
/*
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     2
 * AboutOss is an utility library to retrieve and display
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     3
 * opensource licenses in Android applications.
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     4
 *
34
ce299aacc068 build: update license headers
Da Risk <da_risk@geekorum.com>
parents: 22
diff changeset
     5
 * Copyright (C) 2023-2025 by Frederic-Charles Barthelery.
22
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     6
 *
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     7
 * This file is part of AboutOss.
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     8
 *
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     9
 * AboutOss is free software: you can redistribute it and/or modify
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    10
 * it under the terms of the GNU General Public License as published by
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    11
 * the Free Software Foundation, either version 3 of the License, or
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    12
 * (at your option) any later version.
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    13
 *
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    14
 * AboutOss is distributed in the hope that it will be useful,
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    17
 * GNU General Public License for more details.
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    18
 *
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    19
 * You should have received a copy of the GNU General Public License
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    20
 * along with AboutOss.  If not, see <http://www.gnu.org/licenses/>.
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    21
 */
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    22
dependencyResolutionManagement {
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    23
    repositories {
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    24
        gradlePluginPortal()
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    25
        mavenCentral()
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    26
        google()
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    27
    }
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    28
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    29
    versionCatalogs {
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    30
        create("libs") {
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    31
            from(files("../gradle/libs.versions.toml"))
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    32
        }
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    33
    }
d0190e5504a6 build: update to agp 8.9.0
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    34
}