thunderbird-android/cli/html-cleaner-cli/build.gradle
cketti 3c9dd17ff7 Add command line application to sanitize HTML files
This can be used to test what HTML messages will look like after K-9 Mail's sanitization process.
2022-01-28 04:46:31 +01:00

20 lines
439 B
Groovy

apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'application'
version 'unspecified'
application {
mainClass = "app.k9mail.cli.html.cleaner.MainKt"
}
repositories {
mavenCentral()
}
dependencies {
implementation project(':app:html-cleaner')
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "com.github.ajalt.clikt:clikt:3.4.0"
implementation "com.squareup.okio:okio:${versions.okio}"
}