2
0
MasterPassword/core/java/tests/build.gradle

15 lines
357 B
Groovy
Raw Normal View History

plugins {
id 'java'
}
2017-02-06 11:16:04 -05:00
description = 'Master Password Test Suite'
dependencies {
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
}
test.useTestNG()