webapi/build.gradle.kts
author Da Risk <da_risk@geekorum.com>
Thu, 04 Feb 2021 16:31:57 -0400
changeset 772 bb2ab0001870
parent 768 7d7bced24295
child 788 8a9efacfb0a9
permissions -rw-r--r--
build: update to kotlin 1.4.30 and serialization 1.1.0-RC
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
 *
611
91b8d76c03cd Update copyrights headers
Da Risk <da_risk@geekorum.com>
parents: 609
diff changeset
     4
 * Copyright (C) 2017-2020 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
 */
556
b5c11f53f9be Update a few dependencies in library modules
Da Risk <da_risk@geekorum.com>
parents: 528
diff changeset
    21
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    22
plugins {
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    23
    kotlin("jvm")
566
5f481ad9fcc6 Update to gradle-6.0.1
Da Risk <da_risk@geekorum.com>
parents: 556
diff changeset
    24
    kotlin("plugin.serialization")
307
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
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    27
dependencies {
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    28
    implementation(kotlin("stdlib-jdk8"))
397
3881abcdd84c Update to kotlin-1.3.50
Da Risk <da_risk@geekorum.com>
parents: 357
diff changeset
    29
    implementation(enforcedPlatform(kotlin("bom")))
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    30
310
bd0611482474 Extract tinyrss web api to a new module "webapi"
Da Risk <da_risk@geekorum.com>
parents: 307
diff changeset
    31
    implementation("androidx.annotation:annotation:1.1.0")
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    32
    implementation("javax.inject:javax.inject:1")
768
7d7bced24295 build: update a bunch of dependencies
Da Risk <da_risk@geekorum.com>
parents: 764
diff changeset
    33
    implementation("com.squareup.retrofit2:retrofit:2.9.0")
772
bb2ab0001870 build: update to kotlin 1.4.30 and serialization 1.1.0-RC
Da Risk <da_risk@geekorum.com>
parents: 768
diff changeset
    34
    implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.1.0-RC")
310
bd0611482474 Extract tinyrss web api to a new module "webapi"
Da Risk <da_risk@geekorum.com>
parents: 307
diff changeset
    35
768
7d7bced24295 build: update a bunch of dependencies
Da Risk <da_risk@geekorum.com>
parents: 764
diff changeset
    36
    implementation(enforcedPlatform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.4.2"))
655
cf9bfc8abc15 update to coroutines 1.3.5
Da Risk <da_risk@geekorum.com>
parents: 651
diff changeset
    37
    api("org.jetbrains.kotlinx:kotlinx-coroutines-core")
310
bd0611482474 Extract tinyrss web api to a new module "webapi"
Da Risk <da_risk@geekorum.com>
parents: 307
diff changeset
    38
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    39
357
da0a1c954222 tests: update to Truth-1.0
Da Risk <da_risk@geekorum.com>
parents: 310
diff changeset
    40
    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
    41
    testImplementation(kotlin("test-junit"))
307
f1b40d8534be extract htmlparsers into a new library module
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    42
}