faviKonSnoop/build.gradle.kts
author Da Risk <da_risk@geekorum.com>
Tue, 12 May 2020 01:21:24 -0400
changeset 665 abf3178cc018
parent 652 28f0d273cd88
child 673 b25358bd9512
permissions -rw-r--r--
build: Avdl use tunnel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
446
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     1
/*
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     2
 * Geekttrss is a RSS feed reader application on the Android Platform.
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     3
 *
611
91b8d76c03cd Update copyrights headers
Da Risk <da_risk@geekorum.com>
parents: 610
diff changeset
     4
 * Copyright (C) 2017-2020 by Frederic-Charles Barthelery.
446
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     5
 *
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     6
 * This file is part of Geekttrss.
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     7
 *
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     8
 * Geekttrss is free software: you can redistribute it and/or modify
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     9
 * it under the terms of the GNU General Public License as published by
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    10
 * the Free Software Foundation, either version 3 of the License, or
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    11
 * (at your option) any later version.
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    12
 *
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    13
 * Geekttrss is distributed in the hope that it will be useful,
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    16
 * GNU General Public License for more details.
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    17
 *
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    18
 * You should have received a copy of the GNU General Public License
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    19
 * along with Geekttrss.  If not, see <http://www.gnu.org/licenses/>.
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    20
 */
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    21
plugins {
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    22
    kotlin("jvm")
566
5f481ad9fcc6 Update to gradle-6.0.1
Da Risk <da_risk@geekorum.com>
parents: 556
diff changeset
    23
    kotlin("plugin.serialization")
446
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    24
}
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    25
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    26
dependencies {
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    27
    implementation(kotlin("stdlib-jdk8"))
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    28
    implementation(enforcedPlatform(kotlin("bom")))
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    29
652
28f0d273cd88 faviKonSnoop: update dependencies
Da Risk <da_risk@geekorum.com>
parents: 640
diff changeset
    30
    api("com.squareup.okhttp3:okhttp:4.4.0")
610
ce2a2fd5a0f2 faviKonSnoop: update kotlinx.serialization runtime
Da Risk <da_risk@geekorum.com>
parents: 566
diff changeset
    31
    api("com.squareup.okio:okio:2.4.3")
446
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    32
    implementation("javax.inject:javax.inject:1")
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    33
    implementation("org.jsoup:jsoup:1.10.2")
652
28f0d273cd88 faviKonSnoop: update dependencies
Da Risk <da_risk@geekorum.com>
parents: 640
diff changeset
    34
    implementation("org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.20.0")
446
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    35
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    36
    testImplementation("com.google.truth:truth:1.0")
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    37
    testImplementation(kotlin("test-junit"))
652
28f0d273cd88 faviKonSnoop: update dependencies
Da Risk <da_risk@geekorum.com>
parents: 640
diff changeset
    38
    testImplementation("io.mockk:mockk:1.9.3")
446
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    39
}