Advertisement
Guest User

Untitled

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