htmlparsers/build.gradle.kts
author Da Risk <da_risk@geekorum.com>
Thu, 03 Oct 2019 16:42:53 -0700
changeset 510 d7f92d15e5ef
parent 397 3881abcdd84c
child 525 e884f73f9eef
permissions -rw-r--r--
Remove FeedListFragment
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
 *
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     4
 * Copyright (C) 2017-2019 by Frederic-Charles Barthelery.
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 {
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    22
    kotlin("jvm")
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    23
    id("com.geekorum.build.source-license-checker")
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
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    26
dependencies {
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    27
    implementation(kotlin("stdlib-jdk8"))
397
3881abcdd84c Update to kotlin-1.3.50
Da Risk <da_risk@geekorum.com>
parents: 357
diff changeset
    28
    implementation(enforcedPlatform(kotlin("bom")))
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    29
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    30
    implementation("javax.inject:javax.inject:1")
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    31
    api("org.jsoup:jsoup:1.10.2")
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    32
357
da0a1c954222 tests: update to Truth-1.0
Da Risk <da_risk@geekorum.com>
parents: 307
diff changeset
    33
    testImplementation("com.google.truth:truth:1.0")
397
3881abcdd84c Update to kotlin-1.3.50
Da Risk <da_risk@geekorum.com>
parents: 357
diff changeset
    34
    testImplementation(kotlin("test-junit"))
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    35
}