2017-03-10 16:31:22 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
2017-02-06 16:16:04 +00:00
|
|
|
|
|
|
|
description = 'Master Password Algorithm Implementation'
|
|
|
|
|
|
|
|
dependencies {
|
2018-05-17 17:03:28 +00:00
|
|
|
compile( group: 'com.lyndir.lhunath.opal', name: 'opal-system', version: '1.7-p1' ) {
|
2017-02-06 16:16:04 +00:00
|
|
|
exclude( module: 'joda-time' )
|
|
|
|
}
|
2017-03-10 16:31:22 +00:00
|
|
|
|
2018-05-19 23:58:37 +00:00
|
|
|
compile 'com.github.joshjdevl.libsodiumjni:libsodium-jni:1.0.6'
|
2018-05-14 15:27:49 +00:00
|
|
|
compile 'com.fasterxml.jackson.core:jackson-annotations:2.9.5'
|
2017-03-10 16:31:22 +00:00
|
|
|
compile group: 'org.jetbrains', name: 'annotations', version: '13.0'
|
|
|
|
compile group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.1'
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|