2
0
MasterPassword/platform-independent/java/tests/build.gradle

20 lines
650 B
Groovy
Raw Normal View History

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'
implementation project( ':masterpassword-algorithm' )
implementation project( ':masterpassword-model' )
2017-02-06 16:16:04 +00: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 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()