Add missing testng dependencies

This commit is contained in:
Igor Motov 2011-07-07 17:00:00 -04:00 committed by kimchy
parent 21883716e5
commit e5f2dfbf0e
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,8 @@
<component name="libraryTable">
<library name="testng">
<CLASSES>
<root url="jar://$GRADLE_REPOSITORY$/com.beust/jcommander/jars/jcommander-1.13.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/org.beanshell/bsh/jars/bsh-2.0b4.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/org.testng/testng/jars/testng-6.1.1.jar!/" />
</CLASSES>
<JAVADOC />

View File

@ -71,6 +71,8 @@ allprojects {
testCompile project(':test-testng')
}
testCompile('org.testng:testng:6.1.1') { transitive = false }
testCompile('com.beust:jcommander:1.13') { transitive = false }
testCompile('org.beanshell:bsh:2.0b4') { transitive = false }
testCompile('org.hamcrest:hamcrest-core:1.3.RC2') { transitive = false }
testCompile('org.hamcrest:hamcrest-library:1.3.RC2') { transitive = false }
}