Quarkus - Gradle Plugin Repositories
Quarkus Gradle plugin is not yet published to the Gradle Plugin Portal, so you need to add the following to your '~/.gradle/init.gradle' file:
allprojects {
buildscript { (1)
repositories {
mavenCentral()
}
dependencies {
classpath 'io.quarkus:quarkus-gradle-plugin:0.11.0'
}
}
repositories {
mavenCentral()
}
}
1 | The buildscript block is needed for the Quarkus Gradle plugin. |
Alternatively you add the buildscript and repositories blocks in your build.gradle
file.