2
0

22 lines
735 B
Groovy
Raw Normal View History

plugins {
id 'java'
}
2017-02-06 11:16:04 -05:00
description = 'Master Password Test Suite'
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: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
2021-02-08 14:20:29 -05:00
implementation group: 'com.github.spotbugs', name: 'spotbugs-annotations', version: '4.2.1'
implementation project( ':masterpassword-algorithm' )
implementation project( ':masterpassword-model' )
2017-02-06 11:16:04 -05: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 14:13:03 -04:00
runtime group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.1'
2017-02-06 11:16:04 -05:00
}
2017-02-06 11:16:04 -05:00
test.useTestNG()