Skip to content

Instantly share code, notes, and snippets.

@rockey5520
Created October 12, 2019 12:51
Show Gist options
  • Save rockey5520/d4d27dec552f75def25cb3f4776f4ab7 to your computer and use it in GitHub Desktop.
Save rockey5520/d4d27dec552f75def25cb3f4776f4ab7 to your computer and use it in GitHub Desktop.
builld.gradle
buildscript {
repositories {
mavenLocal()
}
dependencies {
classpath "io.quarkus:quarkus-gradle-plugin:${quarkusVersion}"
}
}
plugins {
id 'java'
}
apply plugin: 'io.quarkus'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation enforcedPlatform("io.quarkus:quarkus-bom:${quarkusVersion}")
implementation 'io.quarkus:quarkus-resteasy'
testImplementation 'io.quarkus:quarkus-junit5'
testImplementation 'io.rest-assured:rest-assured'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment