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

Commit 62da542

Browse files
committed
release v0.2.0
1 parent c77754d commit 62da542

File tree

17 files changed

+23
-23
lines changed

17 files changed

+23
-23
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import org.jooby.Jooby;
1414
public class App extends Jooby {
1515

1616
{
17-
get("/", (req, rsp) ->
18-
rsp.send("Hey Jooby!")
17+
get("/", (req) ->
18+
"Hey Jooby!"
1919
);
2020
}
2121

@@ -40,7 +40,7 @@ Just paste this into a terminal (make sure Java 8 and Maven 3.x are installed):
4040

4141
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app
4242
-Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype
43-
-DarchetypeGroupId=org.jooby -DarchetypeVersion=0.1.0
43+
-DarchetypeGroupId=org.jooby -DarchetypeVersion=0.2.0
4444

4545
You might want to edit/change:
4646

@@ -55,7 +55,7 @@ Let's try it!:
5555

5656
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app
5757
-Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype
58-
-DarchetypeGroupId=org.jooby -DarchetypeVersion=0.1.0
58+
-DarchetypeGroupId=org.jooby -DarchetypeVersion=0.2.0
5959
cd my-app
6060
mvn jooby:run
6161

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.2.0-SNAPSHOT</version>
10+
<version>0.2.0</version>
1111
</parent>
1212

1313
<artifactId>jooby-archetype</artifactId>

jooby-hbm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<dependency>
77
<groupId>org.jooby</groupId>
88
<artifactId>jooby-hbm</artifactId>
9-
<version>0.1.0</version>
9+
<version>0.2.0</version>
1010
</dependency>
1111
```
1212
## usage

jooby-hbm/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.2.0-SNAPSHOT</version>
8+
<version>0.2.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-hbs/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.2.0-SNAPSHOT</version>
8+
<version>0.2.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-jackson/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<dependency>
77
<groupId>org.jooby</groupId>
88
<artifactId>jooby-jackson</artifactId>
9-
<version>0.1.0</version>
9+
<version>0.2.0</version>
1010
</dependency>
1111
```
1212
## usage

jooby-jackson/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.2.0-SNAPSHOT</version>
8+
<version>0.2.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-jdbc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Give you a production-ready jdbc data source, powered by the [HikariCP](https://
88
<dependency>
99
<groupId>org.jooby</groupId>
1010
<artifactId>jooby-jdbc</artifactId>
11-
<version>0.1.0</version>
11+
<version>0.2.0</version>
1212
</dependency>
1313
```
1414
## usage

jooby-jdbc/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.2.0-SNAPSHOT</version>
8+
<version>0.2.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-maven-plugin/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.2.0-SNAPSHOT</version>
8+
<version>0.2.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)