Skip to content

Commit 18ab191

Browse files
committed
v2.10.0
1 parent 42cbf20 commit 18ab191

File tree

59 files changed

+166
-120
lines changed

Some content is hidden

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

59 files changed

+166
-120
lines changed

docs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>jooby-project</artifactId>
9-
<version>2.10.0-SNAPSHOT</version>
9+
<version>2.10.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

jooby/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>jooby-project</artifactId>
9-
<version>2.10.0-SNAPSHOT</version>
9+
<version>2.10.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

jooby/src/main/java/io/jooby/Server.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ abstract class Base implements Server {
6969
};
7070

7171
private static final Predicate<Throwable> ADDRESS_IN_USE = cause ->
72-
(cause instanceof BindException) ||
73-
(Optional.ofNullable(cause)
72+
(cause instanceof BindException)
73+
|| (Optional.ofNullable(cause)
7474
.map(Throwable::getMessage)
7575
.map(String::toLowerCase)
7676
.filter(msg -> msg.contains("address already in use"))

modules/jooby-apt/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>2.10.0-SNAPSHOT</version>
9+
<version>2.10.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/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>io.jooby</groupId>
99
<artifactId>modules</artifactId>
10-
<version>2.10.0-SNAPSHOT</version>
10+
<version>2.10.0</version>
1111
</parent>
1212

1313
<artifactId>jooby-archetype</artifactId>

modules/jooby-awssdk-v1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>2.10.0-SNAPSHOT</version>
9+
<version>2.10.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/jooby-banner/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>2.10.0-SNAPSHOT</version>
9+
<version>2.10.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/jooby-bom/pom.xml

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.jooby</groupId>
66
<artifactId>modules</artifactId>
7-
<version>2.10.0-SNAPSHOT</version>
7+
<version>2.10.0</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>
@@ -16,7 +16,7 @@
1616
<!-- THIS FILE IS AUTO GENERATED. DON'T EDIT -->
1717

1818
<properties>
19-
<jooby.version>2.9.6</jooby.version>
19+
<jooby.version>2.10.0</jooby.version>
2020
<HikariCP.version>4.0.3</HikariCP.version>
2121
<archetype-packaging.version>3.2.0</archetype-packaging.version>
2222
<asm.version>9.1</asm.version>
@@ -48,18 +48,18 @@
4848
<handlebars.version>4.2.0</handlebars.version>
4949
<hibernate.version>5.4.30.Final</hibernate.version>
5050
<jackson.version>2.12.4</jackson.version>
51-
<jacoco-maven-plugin.version>0.8.6</jacoco-maven-plugin.version>
52-
<jacoco.version>0.8.6</jacoco.version>
51+
<jacoco-maven-plugin.version>0.8.7</jacoco-maven-plugin.version>
52+
<jacoco.version>0.8.7</jacoco.version>
5353
<jakarta.ws.rs-api.version>2.1.6</jakarta.ws.rs-api.version>
5454
<jasypt.version>1.9.3</jasypt.version>
5555
<javax.inject.version>1</javax.inject.version>
5656
<jboss-modules.version>1.11.0.Final</jboss-modules.version>
5757
<jdbi.version>3.20.0</jdbi.version>
58-
<jetty.version>9.4.41.v20210516</jetty.version>
58+
<jetty.version>9.4.43.v20210629</jetty.version>
5959
<jfiglet.version>0.0.8</jfiglet.version>
6060
<jmespath-java.version>1.11.916</jmespath-java.version>
61-
<jooby-maven-plugin.version>2.9.6</jooby-maven-plugin.version>
62-
<jooby.version>2.9.6</jooby.version>
61+
<jooby-maven-plugin.version>2.10.0</jooby-maven-plugin.version>
62+
<jooby.version>2.10.0</jooby.version>
6363
<json.version>20210307</json.version>
6464
<jsonwebtoken.version>0.11.2</jsonwebtoken.version>
6565
<jsr305.version>3.0.2</jsr305.version>
@@ -122,6 +122,7 @@
122122
<undertow.version>2.2.8.Final</undertow.version>
123123
<versions-maven-plugin.version>2.8.1</versions-maven-plugin.version>
124124
<weld.version>3.1.5.Final</weld.version>
125+
<yasson.version>1.0.9</yasson.version>
125126
</properties>
126127

127128
<dependencyManagement>
@@ -186,12 +187,6 @@
186187
<version>${jooby.version}</version>
187188
<type>jar</type>
188189
</dependency>
189-
<dependency>
190-
<groupId>io.jooby</groupId>
191-
<artifactId>jooby-yasson</artifactId>
192-
<version>${jooby.version}</version>
193-
<type>jar</type>
194-
</dependency>
195190
<dependency>
196191
<groupId>io.jooby</groupId>
197192
<artifactId>jooby-openapi</artifactId>
@@ -474,6 +469,18 @@
474469
<version>${gson.version}</version>
475470
<type>jar</type>
476471
</dependency>
472+
<dependency>
473+
<groupId>jakarta.json.bind</groupId>
474+
<artifactId>jakarta.json.bind-api</artifactId>
475+
<version>${json.version}</version>
476+
<type>jar</type>
477+
</dependency>
478+
<dependency>
479+
<groupId>org.eclipse</groupId>
480+
<artifactId>yasson</artifactId>
481+
<version>${yasson.version}</version>
482+
<type>jar</type>
483+
</dependency>
477484
<dependency>
478485
<groupId>com.fasterxml.jackson.core</groupId>
479486
<artifactId>jackson-core</artifactId>

modules/jooby-caffeine/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>2.10.0-SNAPSHOT</version>
9+
<version>2.10.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/jooby-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>2.10.0-SNAPSHOT</version>
9+
<version>2.10.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)