faviKonSnoop/build.gradle.kts
author Da Risk <da_risk@geekorum.com>
Thu, 05 Sep 2019 17:45:00 -0700
changeset 446 d1582394380b
child 452 3d0a13d61020
permissions -rw-r--r--
start faviKonSnoop library
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
 *
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     4
 * Copyright (C) 2017-2019 by Frederic-Charles Barthelery.
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")
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    23
    id("com.geekorum.build.source-license-checker")
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
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    30
    implementation("javax.inject:javax.inject:1")
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    31
    implementation("org.jsoup:jsoup:1.10.2")
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    32
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    33
    testImplementation("com.google.truth:truth:1.0")
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    34
    testImplementation(kotlin("test-junit"))
d1582394380b start faviKonSnoop library
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    35
}