Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plugins {
- id 'java'
- id "org.springframework.boot" version "2.2.0.RELEASE"
- }
- group 'org.example'
- version '1.0-SNAPSHOT'
- repositories {
- mavenCentral()
- }
- ext {
- vertxVersion = '4.0.2'
- springVersion = '2.3.0.RELEASE'
- }
- dependencies {
- testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
- testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
- compile group: 'io.vertx', name: 'vertx-web-client', version: "${vertxVersion}"
- compile group: 'io.vertx', name: 'vertx-web', version: "${vertxVersion}"
- compile group: 'org.springframework.boot', name: 'spring-boot-starter', version: "${springVersion}"
- compile group: 'org.springframework.boot', name: 'spring-boot-autoconfigure-processor', version: "${springVersion}"
- }
- test {
- useJUnitPlatform()
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement