1
0
mirror of https://github.com/fabianonline/telegram_backup.git synced 2025-07-04 22:16:26 +00:00

WIP: Using mustache as template engine for HTML exporter.

This commit is contained in:
2016-07-07 06:40:00 +02:00
parent c62e6db3d3
commit ecbca30a10
7 changed files with 78 additions and 34 deletions

View File

@ -16,6 +16,7 @@ repositories {
dependencies {
compile 'com.github.badoualy:kotlogram:0.0.6'
compile 'org.xerial:sqlite-jdbc:3.8.11.2'
compile 'com.github.spullara.mustache.java:compiler:0.8.18'
}
run {
@ -30,4 +31,8 @@ jar {
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
includes [
"*.mustache"
]
}