Skip to content

Commit 8af3ac1

Browse files
edeandreagithub-actions[bot]
authored andcommitted
Remove no longer necessary blocking annotation (#183)
1 parent 6771483 commit 8af3ac1

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

scaffolder-templates/parasol-java-template/skeleton/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@
164164
<artifactId>maven-surefire-plugin</artifactId>
165165
<version>${surefire-plugin.version}</version>
166166
<configuration>
167+
<argLine>-javaagent:${org.mockito:mockito-core:jar}</argLine>
167168
<systemPropertyVariables>
168169
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
169170
<maven.home>${maven.home}</maven.home>
@@ -185,6 +186,7 @@
185186
</execution>
186187
</executions>
187188
<configuration>
189+
<argLine>-javaagent:${org.mockito:mockito-core:jar}</argLine>
188190
<systemPropertyVariables>
189191
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
190192
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
@@ -195,6 +197,17 @@
195197
</environmentVariables>
196198
</configuration>
197199
</plugin>
200+
<plugin>
201+
<groupId>org.apache.maven.plugins</groupId>
202+
<artifactId>maven-dependency-plugin</artifactId>
203+
<executions>
204+
<execution>
205+
<goals>
206+
<goal>properties</goal>
207+
</goals>
208+
</execution>
209+
</executions>
210+
</plugin>
198211
</plugins>
199212
</build>
200213
<profiles>

scaffolder-templates/parasol-java-template/skeleton/src/main/java/org/parasol/resources/ClaimWebsocketChatBot.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ public ClaimBotQueryResponse onError(Throwable error) {
4444

4545
@OnTextMessage
4646
@WithSpan("ChatMessage")
47-
@Blocking
4847
public Multi<ClaimBotQueryResponse> onMessage(ClaimBotQuery query) {
4948
Log.infof("Got chat query: %s", query);
5049

0 commit comments

Comments
 (0)