File tree Expand file tree Collapse file tree
src/test/java/io/jooby/i1570 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ done using `parameters` compiler option.
233233 <args>
234234 <arg>-java-parameters</arg>
235235 </args>
236- <jvmTarget>1.8 </jvmTarget>
236+ <jvmTarget>17 </jvmTarget>
237237 ...
238238 </configuration>
239239 </plugin>
Original file line number Diff line number Diff line change 128128 <sourceDir >${project.basedir} /src/main/kotlin</sourceDir >
129129 <sourceDir >${project.basedir} /src/main/java</sourceDir >
130130 </sourceDirs >
131- <jvmTarget >1.8 </jvmTarget >
131+ <jvmTarget >17 </jvmTarget >
132132 </configuration >
133133 </execution >
134134 <execution >
Original file line number Diff line number Diff line change 8888 <scope >test</scope >
8989 </dependency >
9090
91- <dependency >
92- <groupId >io.jooby</groupId >
93- <artifactId >jooby-jwt</artifactId >
94- <version >${jooby.version} </version >
95- <scope >test</scope >
96- </dependency >
97-
9891 <!-- kotlin -->
9992 <dependency >
10093 <groupId >org.jetbrains.kotlin</groupId >
131124 <sourceDir >${project.basedir} /src/main/kotlin</sourceDir >
132125 <sourceDir >${project.basedir} /src/main/java</sourceDir >
133126 </sourceDirs >
134- <jvmTarget >1.8 </jvmTarget >
127+ <jvmTarget >17 </jvmTarget >
135128 </configuration >
136129 </execution >
137130 <execution >
Original file line number Diff line number Diff line change 8484 <artifactId >jooby-mutiny</artifactId >
8585 <version >${jooby.version} </version >
8686 </dependency >
87+ <dependency >
88+ <groupId >io.jooby</groupId >
89+ <artifactId >jooby-test</artifactId >
90+ <version >${jooby.version} </version >
91+ </dependency >
8792 <dependency >
8893 <groupId >org.ow2.asm</groupId >
8994 <artifactId >asm</artifactId >
134139 <scope >test</scope >
135140 </dependency >
136141
142+ <dependency >
143+ <groupId >org.mockito</groupId >
144+ <artifactId >mockito-core</artifactId >
145+ <scope >test</scope >
146+ </dependency >
147+
137148 <dependency >
138149 <groupId >org.jacoco</groupId >
139150 <artifactId >org.jacoco.agent</artifactId >
Original file line number Diff line number Diff line change 33 * Apache License Version 2.0 https://jooby.io/LICENSE.txt
44 * Copyright 2014 Edgar Espina
55 */
6- package issues .i1570 ;
6+ package io . jooby .i1570 ;
77
88import io .jooby .Jooby ;
99import io .jooby .MediaType ;
Original file line number Diff line number Diff line change 33 * Apache License Version 2.0 https://jooby.io/LICENSE.txt
44 * Copyright 2014 Edgar Espina
55 */
6- package issues ;
6+ package io . jooby . i1570 ;
77
88import static org .junit .jupiter .api .Assertions .assertEquals ;
99import static org .mockito .Mockito .mock ;
1717import io .jooby .test .MockContext ;
1818import io .jooby .test .MockRouter ;
1919import io .jooby .test .MockSession ;
20- import issues .i1570 .App1570 ;
2120
2221public class Issue1570 {
2322
You can’t perform that action at this time.
0 commit comments