Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. apply plugin: 'java'
  2. apply plugin: 'jacoco'
  3. apply plugin: 'checkstyle'
  4. apply plugin: 'pmd'
  5.  
  6. buildscript {
  7. repositories {
  8. mavenCentral()
  9. }
  10.  
  11. dependencies {
  12. classpath 'org.postgresql:postgresql:42.2.0'
  13. }
  14. }
  15.  
  16. repositories {
  17. mavenCentral()
  18. }
  19.  
  20. dependencies {
  21. testCompile('org.junit.jupiter:junit-jupiter-api:+')
  22. testCompile('org.junit.jupiter:junit-jupiter-params:+')
  23. testRuntime('org.junit.jupiter:junit-jupiter-engine:+')
  24. compile('postgresql:postgresql:9.1-901-1.jdbc4')
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement