summaryrefslogtreecommitdiff
path: root/parser/feed/build.gradle
blob: 3f6ea4aa3098d4bfd273b3534c42bc3c22651b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
apply plugin: "com.android.library"
apply from: "../../common.gradle"

android {
    lintOptions {
        disable "TrustAllX509TrustManager"
    }
}

dependencies {
    implementation project(':model')

    annotationProcessor "androidx.annotation:annotation:$annotationVersion"

    implementation "androidx.core:core:$appcompatVersion"

    implementation "org.apache.commons:commons-lang3:$commonslangVersion"
    implementation "commons-io:commons-io:$commonsioVersion"
    implementation "org.jsoup:jsoup:$jsoupVersion"

    testImplementation 'junit:junit:4.13'
    testImplementation 'org.robolectric:robolectric:4.5-alpha-1'
}