blob: 0d0f11fc5b93a3709ddfd8283b9c5f539bc5ffb6 [file] [log] [blame]
apply plugin: 'java'
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
// VCard parsing
compile('com.googlecode.ez-vcard:ez-vcard:0.10.2') {
exclude module: 'freemarker'
exclude module: 'jackson-core'
exclude module: 'jsoup'
}
// QRCode encoding
compile 'com.google.zxing:core:3.3.2'
// dependency injection
compile 'javax.inject:javax.inject:1'
// ORM
compile 'com.j256.ormlite:ormlite-core:4.48'
// Required -- JUnit 4 framework
testCompile 'junit:junit:4.12'
// RxJava
compile "io.reactivex.rxjava2:rxjava:2.1.12"
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8