Advertisement
shakasu

Untitled

Mar 1st, 2021
729
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.81 KB | None | 0 0
  1. plugins {
  2.     id 'java'
  3.     id "org.springframework.boot" version "2.2.0.RELEASE"
  4.  
  5. }
  6.  
  7. group 'org.example'
  8. version '1.0-SNAPSHOT'
  9.  
  10. repositories {
  11.     mavenCentral()
  12. }
  13.  
  14. ext {
  15.     vertxVersion = '4.0.2'
  16.     springVersion = '2.3.0.RELEASE'
  17. }
  18.  
  19. dependencies {
  20.     testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
  21.     testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
  22.     compile group: 'io.vertx', name: 'vertx-web-client', version: "${vertxVersion}"
  23.     compile group: 'io.vertx', name: 'vertx-web', version: "${vertxVersion}"
  24.     compile group: 'org.springframework.boot', name: 'spring-boot-starter', version: "${springVersion}"
  25.     compile group: 'org.springframework.boot', name: 'spring-boot-autoconfigure-processor', version: "${springVersion}"
  26. }
  27.  
  28. test {
  29.     useJUnitPlatform()
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement