2017-03-10 16:31:22 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
2017-02-06 16:16:04 +00:00
|
|
|
|
|
|
|
description = 'Master Password Test Suite'
|
|
|
|
|
|
|
|
dependencies {
|
2018-06-10 19:22:37 +00:00
|
|
|
implementation group: 'com.lyndir.lhunath.opal', name: 'opal-system', version: '1.7-p2'
|
2019-09-23 18:13:03 +00:00
|
|
|
implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
|
2021-02-08 19:20:29 +00:00
|
|
|
implementation group: 'com.github.spotbugs', name: 'spotbugs-annotations', version: '4.2.1'
|
2018-05-25 17:08:05 +00:00
|
|
|
|
2018-06-25 16:25:38 +00:00
|
|
|
implementation project( ':masterpassword-algorithm' )
|
|
|
|
implementation project( ':masterpassword-model' )
|
2017-02-06 16:16:04 +00:00
|
|
|
|
2018-06-25 16:25:38 +00:00
|
|
|
testImplementation group: 'org.testng', name: 'testng', version: '6.8.5'
|
|
|
|
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.2'
|
2019-09-23 18:13:03 +00:00
|
|
|
|
|
|
|
runtime group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.1'
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
2018-07-03 15:21:48 +00:00
|
|
|
|
2017-02-06 16:16:04 +00:00
|
|
|
test.useTestNG()
|