htmlparsers/build.gradle.kts
author Da Risk <da_risk@geekorum.com>
Wed, 03 Jan 2024 15:26:40 -0400
changeset 1174 731f6ee517b6
parent 1144 d6c1637eb4ab
child 1305 ecb49cb4d40b
permissions -rw-r--r--
update license headers
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     1
/*
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     2
 * Geekttrss is a RSS feed reader application on the Android Platform.
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     3
 *
1174
731f6ee517b6 update license headers
Da Risk <da_risk@geekorum.com>
parents: 1144
diff changeset
     4
 * Copyright (C) 2017-2024 by Frederic-Charles Barthelery.
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     5
 *
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     6
 * This file is part of Geekttrss.
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     7
 *
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     8
 * Geekttrss is free software: you can redistribute it and/or modify
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     9
 * it under the terms of the GNU General Public License as published by
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    10
 * the Free Software Foundation, either version 3 of the License, or
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    11
 * (at your option) any later version.
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    12
 *
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    13
 * Geekttrss is distributed in the hope that it will be useful,
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    16
 * GNU General Public License for more details.
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    17
 *
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    18
 * You should have received a copy of the GNU General Public License
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    19
 * along with Geekttrss.  If not, see <http://www.gnu.org/licenses/>.
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    20
 */
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    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")
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    23
}
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    24
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    25
dependencies {
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    26
    implementation(kotlin("stdlib-jdk8"))
397
3881abcdd84c Update to kotlin-1.3.50
Da Risk <da_risk@geekorum.com>
parents: 357
diff changeset
    27
    implementation(enforcedPlatform(kotlin("bom")))
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    28
941
dd7a7a2adb1c build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents: 883
diff changeset
    29
    implementation(libs.javax.inject)
dd7a7a2adb1c build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents: 883
diff changeset
    30
    api(libs.jsoup)
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    31
941
dd7a7a2adb1c build: move dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents: 883
diff changeset
    32
    testImplementation(libs.truth)
397
3881abcdd84c Update to kotlin-1.3.50
Da Risk <da_risk@geekorum.com>
parents: 357
diff changeset
    33
    testImplementation(kotlin("test-junit"))
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    34
}