2
0

20 lines
622 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'
2018-04-26 13:05:45 -04:00
compile project( ':masterpassword-algorithm' )
2018-05-03 13:49:34 +02:00
compile project( ':masterpassword-model' )
2017-02-06 11:16:04 -05:00
2018-04-26 13:05:45 -04:00
testCompile group: 'org.testng', name: 'testng', version: '6.8.5'
testCompile group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.2'
2017-02-06 11:16:04 -05:00
}
2018-05-22 01:00:14 -04:00
//tasks.withType(Test) {
// systemProperty "java.library.path", "/Users/lhunath/Documents/workspace/lyndir/MasterPassword/core/java/algorithm/build/libs/mpw/shared"
//}
2017-02-06 11:16:04 -05:00
test.useTestNG()