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-05-25 17:08:05 +00:00
|
|
|
implementation group: 'com.lyndir.lhunath.opal', name: 'opal-system', version: '1.7-p1'
|
|
|
|
|
2018-04-26 17:05:45 +00:00
|
|
|
compile project( ':masterpassword-algorithm' )
|
2018-05-03 11:49:34 +00:00
|
|
|
compile project( ':masterpassword-model' )
|
2017-02-06 16:16:04 +00:00
|
|
|
|
2018-04-26 17:05:45 +00: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 16:16:04 +00:00
|
|
|
}
|
2018-05-22 05:00:14 +00:00
|
|
|
//tasks.withType(Test) {
|
|
|
|
// systemProperty "java.library.path", "/Users/lhunath/Documents/workspace/lyndir/MasterPassword/core/java/algorithm/build/libs/mpw/shared"
|
|
|
|
//}
|
2017-02-06 16:16:04 +00:00
|
|
|
test.useTestNG()
|