Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. plugins {
  2. id 'java'
  3. }
  4.  
  5. group '31'
  6. version '1.0-SNAPSHOT'
  7.  
  8. sourceCompatibility = 1.8
  9.  
  10. repositories {
  11. mavenCentral()
  12. }
  13.  
  14. dependencies {
  15. testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.2'
  16. testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
  17. compile files("C:\\Users\\Asus\\Desktop\\Trabalho ESII/ES2_TP1_1920.jar")
  18. }
  19.  
  20. test {
  21. useJUnitPlatform()
  22. testLogging {
  23. events "passed", "skipped", "failed", "standardOut", "standardError"
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement