summaryrefslogtreecommitdiff
path: root/parser/feed/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'parser/feed/build.gradle')
-rw-r--r--parser/feed/build.gradle23
1 files changed, 23 insertions, 0 deletions
diff --git a/parser/feed/build.gradle b/parser/feed/build.gradle
new file mode 100644
index 000000000..3f6ea4aa3
--- /dev/null
+++ b/parser/feed/build.gradle
@@ -0,0 +1,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'
+}