Skip to content

Commit cea3960

Browse files
committed
v1.1.0
1 parent 94d5a0a commit cea3960

File tree

181 files changed

+848
-223
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+848
-223
lines changed

README.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,23 @@ public class App extends Jooby {
4242

4343
```
4444

45-
[JavaScript](/jooby-js):
45+
[Kotlin](/jooby-lang-kotlin):
46+
47+
```kotlin
48+
49+
import org.jooby.*
50+
51+
fun main(args: Array<String>) {
52+
run(*args) {
53+
get {
54+
"Hello Kotlin"
55+
}
56+
}
57+
}
58+
59+
```
60+
61+
[JavaScript](/jooby-lang-js):
4662

4763
```js
4864

@@ -54,7 +70,7 @@ app.get('/', function () 'Hey Jooby!');
5470

5571
## killer features
5672

57-
* **Multi-language**. Write your application in Java or [JavaScript](https://github.com/jooby-project/jooby/tree/master/jooby-js)
73+
* **Multi-language**. Write your application in Java, [Kotlin](https://github.com/jooby-project/jooby/tree/master/jooby-lang-kotlin) or [JavaScript](https://github.com/jooby-project/jooby/tree/master/jooby-lang-js)
5874
* **Scripting programming model**. Like [express.js](http://expressjs.com), [Sinatra](http://www.sinatrarb.com), etc.. but also
5975
* **MVC programming model**. Like [Spring](http://spring.io) controllers or [Jersey](https://jersey.java.net) resources
6076
* **Multi-server**. Including [Netty](http://netty.io), [Jetty](http://www.eclipse.org/jetty/) and [Undertow](http://undertow.io)
@@ -77,7 +93,7 @@ quickstart
7793
Just paste this into a terminal (make sure [Java 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) and [Maven 3.x](http://maven.apache.org/download.cgi) are installed):
7894

7995
```bash
80-
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=1.0.3
96+
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=1.1.0
8197
```
8298

8399
You might want to edit/change:
@@ -92,7 +108,7 @@ You might want to edit/change:
92108
Let's try it!:
93109

94110
```bash
95-
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=1.0.3
111+
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=1.1.0
96112
cd my-app
97113
mvn jooby:run
98114
```

coverage-report/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jooby</groupId>
77
<artifactId>jooby-project</artifactId>
8-
<version>1.0.4-SNAPSHOT</version>
8+
<version>1.1.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-akka/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak
1111
<dependency>
1212
<groupId>org.jooby</groupId>
1313
<artifactId>jooby-akka</artifactId>
14-
<version>1.0.3</version>
14+
<version>1.1.0</version>
1515
</dependency>
1616
```
1717

jooby-akka/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jooby</groupId>
77
<artifactId>jooby-project</artifactId>
8-
<version>1.0.4-SNAPSHOT</version>
8+
<version>1.1.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.jooby</groupId>
99
<artifactId>jooby-project</artifactId>
10-
<version>1.0.4-SNAPSHOT</version>
10+
<version>1.1.0</version>
1111
</parent>
1212

1313
<artifactId>jooby-archetype</artifactId>

jooby-assets-autoprefixer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Make sure you already setup the [assets module](https://github.com/jooby-project
1010
<dependency>
1111
<groupId>org.jooby</groupId>
1212
<artifactId>jooby-assets-auto-prefixer</artifactId>
13-
<version>1.0.3</version>
13+
<version>1.1.0</version>
1414
<scope>provided</scope>
1515
</dependency>
1616
```

jooby-assets-autoprefixer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jooby</groupId>
77
<artifactId>jooby-project</artifactId>
8-
<version>1.0.4-SNAPSHOT</version>
8+
<version>1.1.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-assets-babel/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Make sure you already setup the [assets module](https://github.com/jooby-project
1010
<dependency>
1111
<groupId>org.jooby</groupId>
1212
<artifactId>jooby-assets-babel</artifactId>
13-
<version>1.0.3</version>
13+
<version>1.1.0</version>
1414
<scope>provided</scope>
1515
</dependency>
1616
```
@@ -35,7 +35,7 @@ assets {
3535
<dependency>
3636
<groupId>org.jooby</groupId>
3737
<artifactId>jooby-assets-babel</artifactId>
38-
<version>1.0.3</version>
38+
<version>1.1.0</version>
3939
<scope>provided</scope>
4040
</dependency>
4141
```

jooby-assets-babel/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jooby</groupId>
77
<artifactId>jooby-project</artifactId>
8-
<version>1.0.4-SNAPSHOT</version>
8+
<version>1.1.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-assets-clean-css/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Make sure you already setup the [assets module](https://github.com/jooby-project
1010
<dependency>
1111
<groupId>org.jooby</groupId>
1212
<artifactId>jooby-assets-clean-css</artifactId>
13-
<version>1.0.3</version>
13+
<version>1.1.0</version>
1414
<scope>provided</scope>
1515
</dependency>
1616
```

0 commit comments

Comments
 (0)