Skip to content

Commit b78afed

Browse files
committed
move gradle.md to /doc and add an entry in faq about it
1 parent 423bb03 commit b78afed

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

md/gradle.md renamed to md/doc/gradle/gradle.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ duplicate a Maven development environment to Gradle.
1010

1111
## A minimal `build.gradle`
1212

13-
```
13+
```js
1414
/*
1515
* We are writing a standalone application.
16+
*
1617
*/
1718
apply plugin: 'application'
1819

@@ -31,11 +32,11 @@ repositories {
3132
}
3233

3334
/*
34-
* A minimal project needs the framwork and a webserver.
35+
* A minimal project needs the framework and a webserver.
3536
*/
3637
dependencies {
37-
compile group: 'org.jooby', name: 'jooby', version: '0.16.0'
38-
compile group: 'org.jooby', name: 'jooby-netty', version: '0.16.0'
38+
compile group: 'org.jooby', name: 'jooby', version: '{{version}}'
39+
compile group: 'org.jooby', name: 'jooby-netty', version: '{{version}}'
3940
}
4041

4142
/*

md/faq.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222

2323
* Deployment options can be found [here](/doc/deployment)
2424

25+
## can I use Gradle?
26+
27+
Yes, with some limitation that are being documented [here](/doc/gradle).
28+
2529
# mime types
2630

2731
## what mime types are supported?

0 commit comments

Comments
 (0)