Skip to content

Commit

Permalink
Temporarily add JBoss repo to gradle guide
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas committed Mar 6, 2019
1 parent 195a629 commit 49d7366
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/src/main/asciidoc/gradle-tooling.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ group = 'org.acme'
version = '1.0-SNAPSHOT'
buildscript { <2>
repositories {
mavenCentral()
maven {
//this is temporary, all dependencies should be in central soon
url 'http://repository.jboss.org/nexus/content/groups/public'
}
}
dependencies {
classpath 'io.quarkus:quarkus-gradle-plugin:{quarkus-version}'
Expand All @@ -54,10 +59,15 @@ buildscript { <2>
repositories { <3>
mavenCentral()
maven {
url 'http://repository.jboss.org/nexus/content/groups/public'
}
}
dependencies { <4>
compileOnly group: 'io.quarkus', name: 'quarkus-resteasy-deployment', version:'{quarkus-version}'
compileOnly group: 'io.quarkus', name: 'quarkus-resteasy', version:'{quarkus-version}'
testOnly group: 'io.quarkus', name: 'quarkus-junit5', version:'{quarkus-version}'
testCompile group: 'io.rest-assured', name: 'rest-assured', version: '3.3.0'
}
----

Expand Down

0 comments on commit 49d7366

Please sign in to comment.