File tree Expand file tree Collapse file tree 7 files changed +11
-8
lines changed
bolt-google-cloud-functions
src/test/java/test_locally Expand file tree Collapse file tree 7 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 1313 <!-- functions-framework-api requires Java 11+ -->
1414 <maven .compiler.source>11</maven .compiler.source>
1515 <maven .compiler.target>11</maven .compiler.target>
16- <google-cloud-functions-api .version>1.0.4 </google-cloud-functions-api .version>
16+ <google-cloud-functions-api .version>1.1.0 </google-cloud-functions-api .version>
1717 </properties >
1818
1919 <artifactId >bolt-google-cloud-functions</artifactId >
Original file line number Diff line number Diff line change 1010 </parent >
1111
1212 <properties >
13- <http4k .version>4.44.0 .0</http4k .version>
13+ <http4k .version>4.47.2 .0</http4k .version>
1414 </properties >
1515
1616 <artifactId >bolt-http4k</artifactId >
Original file line number Diff line number Diff line change 1515 <properties >
1616 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
1717 <kotlin .code.style>official</kotlin .code.style>
18- <ktor .version>2.3.0 </ktor .version>
18+ <ktor .version>2.3.1 </ktor .version>
1919 </properties >
2020
2121 <pluginRepositories >
Original file line number Diff line number Diff line change 1010 </parent >
1111
1212 <properties >
13- <micronaut .version>3.9.2 </micronaut .version>
13+ <micronaut .version>3.9.3 </micronaut .version>
1414 <micronaut-test-junit5 .version>3.9.2</micronaut-test-junit5 .version>
1515 <micronaut-rxjava3 .version>2.4.1</micronaut-rxjava3 .version>
1616 <junit5-jupiter .version>5.9.3</junit5-jupiter .version>
Original file line number Diff line number Diff line change 5151 <jakarta .servlet-api.version>5.0.0</jakarta .servlet-api.version>
5252 <okhttp .version>4.11.0</okhttp .version>
5353 <gson .version>2.10.1</gson .version>
54- <kotlin .version>1.8.21 </kotlin .version>
54+ <kotlin .version>1.8.22 </kotlin .version>
5555 <!-- Note that we should not upgrade sfl4j-api to v2 to avoid confusions on the users side.
5656 see also: https://github.com/slackapi/java-slack-sdk/issues/1034
5757 -->
5858 <slf4j .version>1.7.36</slf4j .version>
59- <lombok .version>1.18.26 </lombok .version>
59+ <lombok .version>1.18.28 </lombok .version>
6060 <lombok-maven-plugin .version>1.18.20.0</lombok-maven-plugin .version>
6161 <delombok .output>target/generated-sources-for-javadocs</delombok .output>
6262
Original file line number Diff line number Diff line change 2020 -->
2121 <tyrus-standalone-client .version>1.20</tyrus-standalone-client .version>
2222 <java-websocket .version>1.5.3</java-websocket .version>
23- <jedis .version>4.4.1 </jedis .version>
24- <jedis-mock .version>1.0.8 </jedis-mock .version>
23+ <jedis .version>4.4.2 </jedis .version>
24+ <jedis-mock .version>1.0.9 </jedis-mock .version>
2525 </properties >
2626
2727 <dependencies >
Original file line number Diff line number Diff line change @@ -164,10 +164,13 @@ public void closeMethod() throws Exception {
164164 assertThat (audit .isShutdown (), is (false ));
165165 assertThat (methods .isTerminated (), is (false ));
166166 assertThat (scim .isTerminated (), is (false ));
167+ assertThat (scim2 .isTerminated (), is (false ));
167168 assertThat (audit .isTerminated (), is (false ));
168169
169170 config .close ();
170171
172+ Thread .sleep (200L );
173+
171174 assertThat (methods .isShutdown (), is (true ));
172175 assertThat (scim .isShutdown (), is (true ));
173176 assertThat (scim2 .isShutdown (), is (true ));
You can’t perform that action at this time.
0 commit comments