File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
quarkus-solace-messaging-connector
src/test/java/com/solace/quarkus/messaging/base Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 16
16
</dependency >
17
17
<dependency >
18
18
<groupId >com.solace.quarkus</groupId >
19
- <artifactId >quarkus-solace-client-deployment </artifactId >
19
+ <artifactId >quarkus-solace-messaging-connector </artifactId >
20
20
<version >${project.version} </version >
21
21
</dependency >
22
22
</dependencies >
Original file line number Diff line number Diff line change 142
142
</resource >
143
143
</resources >
144
144
<plugins >
145
+ <plugin >
146
+ <groupId >io.quarkus</groupId >
147
+ <artifactId >quarkus-extension-maven-plugin</artifactId >
148
+ <version >${quarkus.version} </version >
149
+ <executions >
150
+ <execution >
151
+ <phase >compile</phase >
152
+ <goals >
153
+ <goal >extension-descriptor</goal >
154
+ </goals >
155
+ <configuration >
156
+ <deployment >${project.groupId} :${project.artifactId} -deployment:${project.version} </deployment >
157
+ </configuration >
158
+ </execution >
159
+ </executions >
160
+ </plugin >
145
161
<plugin >
146
162
<groupId >org.apache.maven.plugins</groupId >
147
163
<artifactId >maven-compiler-plugin</artifactId >
Original file line number Diff line number Diff line change 12
12
import com .solace .quarkus .messaging .SolaceConnector ;
13
13
import com .solace .quarkus .messaging .converters .SolaceMessageConverter ;
14
14
15
+ import io .quarkus .runtime .configuration .QuarkusConfigFactory ;
15
16
import io .smallrye .config .SmallRyeConfigProviderResolver ;
16
17
import io .smallrye .config .inject .ConfigExtension ;
17
18
import io .smallrye .reactive .messaging .providers .MediatorFactory ;
@@ -79,6 +80,8 @@ public void stopContainer() {
79
80
}
80
81
// Release the config objects
81
82
SmallRyeConfigProviderResolver .instance ().releaseConfig (ConfigProvider .getConfig ());
83
+ QuarkusConfigFactory .setConfig (null );
84
+ MapBasedConfig .cleanup ();
82
85
}
83
86
84
87
public BeanManager getBeanManager () {
You can’t perform that action at this time.
0 commit comments