2
0
MasterPassword/core/java/algorithm/build.gradle

13 lines
345 B
Groovy
Raw Normal View History

2017-02-06 16:16:04 +00:00
apply plugin: 'java'
description = 'Master Password Algorithm Implementation'
dependencies {
2017-02-09 05:48:07 +00:00
compile( 'com.lyndir.lhunath.opal:opal-system:1.6-p10' ) {
2017-02-06 16:16:04 +00:00
exclude( module: 'joda-time' )
}
compile 'com.lambdaworks:scrypt:1.4.0'
compile 'org.jetbrains:annotations:13.0'
compile 'com.google.code.findbugs:jsr305:3.0.1'
}