2017-02-06 11:16:04 -05:00
|
|
|
plugins {
|
2018-05-25 13:08:05 -04:00
|
|
|
id 'java-library'
|
2017-02-06 11:16:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
description = 'Master Password Site Model'
|
|
|
|
|
|
|
|
dependencies {
|
2018-06-10 15:22:37 -04:00
|
|
|
implementation group: 'com.lyndir.lhunath.opal', name: 'opal-system', version: '1.7-p2'
|
2019-09-23 14:13:03 -04:00
|
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.8'
|
2021-02-08 14:20:29 -05:00
|
|
|
implementation group: 'com.github.spotbugs', name: 'spotbugs-annotations', version: '4.2.1'
|
2018-05-25 13:08:05 -04:00
|
|
|
|
|
|
|
api project( ':masterpassword-algorithm' )
|
2019-09-23 14:13:03 -04:00
|
|
|
api group: 'joda-time', name: 'joda-time', version: '2.10'
|
|
|
|
api group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.9.8'
|
|
|
|
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.8'
|
2018-05-25 13:08:05 -04:00
|
|
|
|
2018-06-25 12:25:38 -04:00
|
|
|
testImplementation group: 'org.testng', name: 'testng', version: '6.8.5'
|
|
|
|
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.2'
|
2017-02-06 11:16:04 -05:00
|
|
|
}
|
2018-07-03 11:21:48 -04:00
|
|
|
|
2017-02-06 11:16:04 -05:00
|
|
|
test.useTestNG()
|