Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

Commit 9607c13

Browse files
committed
v0.16.0
1 parent 6630163 commit 9607c13

File tree

116 files changed

+348
-241
lines changed

Some content is hidden

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

116 files changed

+348
-241
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ quickstart
7373
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):
7474

7575
```bash
76-
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=0.15.1
76+
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=0.16.0
7777
```
7878

7979
You might want to edit/change:
@@ -88,7 +88,7 @@ You might want to edit/change:
8888
Let's try it!:
8989

9090
```bash
91-
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=0.15.1
91+
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=0.16.0
9292
cd my-app
9393
mvn jooby:run
9494
```
@@ -162,7 +162,7 @@ public class App extends Jooby { // 1
162162
}
163163
164164
public static void main(final String[] args) throws Exception {
165-
new App().start(args); // 3. start the application.
165+
run(App::new, args); // 3. start the application.
166166
}
167167
168168
}
@@ -175,7 +175,7 @@ Steps involved are:
175175
176176
2) define some routes
177177
178-
3) call the ```start``` method
178+
3) call the ```run``` method
179179
180180
running
181181
-----

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>0.15.2-SNAPSHOT</version>
8+
<version>0.16.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>0.15.1</version>
14+
<version>0.16.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>0.15.2-SNAPSHOT</version>
8+
<version>0.16.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>0.15.2-SNAPSHOT</version>
10+
<version>0.16.0</version>
1111
</parent>
1212

1313
<artifactId>jooby-archetype</artifactId>

jooby-archetype/src/main/resources/archetype-resources/pom.xml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,6 @@
7474

7575
<build>
7676
<plugins>
77-
<!-- Build jooby.stork | jooby.war | jooby.static -->
78-
<plugin>
79-
<groupId>org.apache.maven.plugins</groupId>
80-
<artifactId>maven-assembly-plugin</artifactId>
81-
<configuration>
82-
<descriptorRefs>
83-
<descriptorRef>jooby.war</descriptorRef>
84-
</descriptorRefs>
85-
</configuration>
86-
</plugin>
87-
8877
<!-- Build fat jar -->
8978
<plugin>
9079
<groupId>org.apache.maven.plugins</groupId>

jooby-assets-babel/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# babel
22

3-
<a href="http://babeljs.io/">Babel</a> is a JavaScript compiler. By default, Babel ships with a set of ES2015 syntax transformers. These allow you to use new syntax, right now without waiting for browser support.
3+
<a href="http://babeljs.io/">Babel</a> is a JavaScript compiler with a set of ES2015 syntax transformers that allow you to use new syntax, right now without waiting for browser support.
44

55
Make sure you already setup the [assets module](https://github.com/jooby-project/jooby/tree/master/jooby-assets) in your project!
66

@@ -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>0.15.1</version>
13+
<version>0.16.0</version>
1414
<scope>test</scope>
1515
</dependency>
1616
```
@@ -35,7 +35,7 @@ assets {
3535
<dependency>
3636
<groupId>org.jooby</groupId>
3737
<artifactId>jooby-assets-babel</artifactId>
38-
<version>0.15.1</version>
38+
<version>0.16.0</version>
3939
<scope>test</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>0.15.2-SNAPSHOT</version>
8+
<version>0.16.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>0.15.1</version>
13+
<version>0.16.0</version>
1414
<scope>test</scope>
1515
</dependency>
1616
```

jooby-assets-clean-css/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>0.15.2-SNAPSHOT</version>
8+
<version>0.16.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)