Skip to content

Instantly share code, notes, and snippets.

@rockey5520
Last active October 12, 2019 12:47
Show Gist options
  • Save rockey5520/918141532b306db1b75d2dc0d5e58c0d to your computer and use it in GitHub Desktop.
Save rockey5520/918141532b306db1b75d2dc0d5e58c0d to your computer and use it in GitHub Desktop.
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