Browse Source

jooby 2.5.1 (#5380)

Edgar Espina 5 years ago
parent
commit
70f9320d32

+ 3 - 3
frameworks/Java/jooby/pom.xml

@@ -7,7 +7,7 @@
   <parent>
   <parent>
     <groupId>io.jooby</groupId>
     <groupId>io.jooby</groupId>
     <artifactId>jooby-project</artifactId>
     <artifactId>jooby-project</artifactId>
-    <version>2.3.0</version>
+    <version>2.5.1</version>
   </parent>
   </parent>
 
 
   <artifactId>jooby</artifactId>
   <artifactId>jooby</artifactId>
@@ -17,7 +17,7 @@
   <name>jooby 2.x</name>
   <name>jooby 2.x</name>
 
 
   <properties>
   <properties>
-    <jooby.version>2.4.0</jooby.version>
+    <jooby.version>2.5.1</jooby.version>
     <!-- downgrade netty and make pg-client happy -->
     <!-- downgrade netty and make pg-client happy -->
     <netty.version>4.1.34.Final</netty.version>
     <netty.version>4.1.34.Final</netty.version>
     <postgresql.version>42.2.5</postgresql.version>
     <postgresql.version>42.2.5</postgresql.version>
@@ -80,7 +80,7 @@
       <plugin>
       <plugin>
         <groupId>com.fizzed</groupId>
         <groupId>com.fizzed</groupId>
         <artifactId>rocker-maven-plugin</artifactId>
         <artifactId>rocker-maven-plugin</artifactId>
-        <version>1.2.1</version>
+        <version>1.2.3</version>
         <executions>
         <executions>
           <execution>
           <execution>
             <id>generate-rocker-templates</id>
             <id>generate-rocker-templates</id>

+ 5 - 5
frameworks/Kotlin/kooby/pom.xml

@@ -8,7 +8,7 @@
   <parent>
   <parent>
     <groupId>io.jooby</groupId>
     <groupId>io.jooby</groupId>
     <artifactId>jooby-project</artifactId>
     <artifactId>jooby-project</artifactId>
-    <version>2.3.0</version>
+    <version>2.5.1</version>
   </parent>
   </parent>
 
 
   <artifactId>kooby</artifactId>
   <artifactId>kooby</artifactId>
@@ -18,7 +18,7 @@
   <name>kooby: jooby + kotlin</name>
   <name>kooby: jooby + kotlin</name>
 
 
   <properties>
   <properties>
-    <jooby.version>2.4.0</jooby.version>
+    <jooby.version>2.5.1</jooby.version>
     <postgresql.version>42.2.5</postgresql.version>
     <postgresql.version>42.2.5</postgresql.version>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <maven.compiler.source>1.8</maven.compiler.source>
     <maven.compiler.source>1.8</maven.compiler.source>
@@ -26,7 +26,7 @@
 
 
     <!-- Startup class -->
     <!-- Startup class -->
     <application.class>kooby.AppKt</application.class>
     <application.class>kooby.AppKt</application.class>
-    <kotlin.version>1.3.50</kotlin.version>
+    <kotlin.version>1.3.61</kotlin.version>
   </properties>
   </properties>
 
 
   <dependencies>
   <dependencies>
@@ -88,7 +88,7 @@
       <plugin>
       <plugin>
         <groupId>com.fizzed</groupId>
         <groupId>com.fizzed</groupId>
         <artifactId>rocker-maven-plugin</artifactId>
         <artifactId>rocker-maven-plugin</artifactId>
-        <version>1.2.1</version>
+        <version>1.2.3</version>
         <executions>
         <executions>
           <execution>
           <execution>
             <id>generate-rocker-templates</id>
             <id>generate-rocker-templates</id>
@@ -138,7 +138,7 @@
       <plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <version>3.8.0</version>
+        <version>3.8.1</version>
         <executions>
         <executions>
           <!-- Replacing default-compile as it is treated specially by maven -->
           <!-- Replacing default-compile as it is treated specially by maven -->
           <execution>
           <execution>

+ 1 - 1
frameworks/Kotlin/kooby/src/main/kotlin/kooby/App.kt

@@ -1,7 +1,7 @@
 package kooby
 package kooby
 
 
 import com.fasterxml.jackson.databind.ObjectMapper
 import com.fasterxml.jackson.databind.ObjectMapper
-import io.jooby.BadRequestException
+import io.jooby.exception.BadRequestException
 import io.jooby.Context
 import io.jooby.Context
 import io.jooby.ExecutionMode.EVENT_LOOP
 import io.jooby.ExecutionMode.EVENT_LOOP
 import io.jooby.MediaType.JSON
 import io.jooby.MediaType.JSON