소스 검색

jooby 2.5.1 (#5380)

Edgar Espina 5 년 전
부모
커밋
70f9320d32
3개의 변경된 파일9개의 추가작업 그리고 9개의 파일을 삭제
  1. 3 3
      frameworks/Java/jooby/pom.xml
  2. 5 5
      frameworks/Kotlin/kooby/pom.xml
  3. 1 1
      frameworks/Kotlin/kooby/src/main/kotlin/kooby/App.kt

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

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

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

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

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

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