2
0
MasterPassword/core/java/tests/build.gradle
2017-04-04 20:39:18 -04:00

14 lines
310 B
Groovy

plugins {
id 'java'
}
description = 'Master Password Test Suite'
dependencies {
compile project(':masterpassword-algorithm')
testCompile group: 'org.testng', name: 'testng', version:'6.8.5'
testCompile group: 'ch.qos.logback', name: 'logback-classic', version:'1.1.2'
}
test.useTestNG()