Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. ...
  2.  
  3. repositories {
  4. // Use 'jcenter' for resolving your dependencies.
  5. // You can declare any Maven/Ivy/file repository here.
  6. jcenter()
  7.  
  8. flatDir {
  9. dirs 'lib/'
  10. }
  11.  
  12. }
  13.  
  14. dependencies {
  15. // The production code uses the SLF4J logging API at compile time
  16. compile 'org.slf4j:slf4j-api:1.7.21'
  17.  
  18. compile name: 'nameOfJAR'
  19.  
  20. // Declare the dependency for your favourite test framework you want to use in your tests.
  21. // TestNG is also supported by the Gradle Test task. Just change the
  22. // testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
  23. // 'test.useTestNG()' to your build script.
  24. testCompile 'junit:junit:4.12'
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement