Commit cdc0a32 1 parent ecd35b4 commit cdc0a32 Copy full SHA for cdc0a32
File tree 2 files changed +1
-7
lines changed
src/main/java/io/hyperfoil/tools
2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 38
38
<artifactId >resteasy-client</artifactId >
39
39
</dependency >
40
40
41
- <dependency >
42
- <groupId >org.jboss.resteasy</groupId >
43
- <artifactId >resteasy-cdi</artifactId >
44
- </dependency >
45
-
46
41
<dependency >
47
42
<groupId >org.jboss.resteasy</groupId >
48
43
<artifactId >resteasy-multipart-provider</artifactId >
Original file line number Diff line number Diff line change 26
26
27
27
import javax .net .ssl .SSLContext ;
28
28
import javax .net .ssl .TrustManagerFactory ;
29
- import jakarta .ws .rs .core .UriBuilder ;
30
29
31
30
import java .io .Closeable ;
32
31
import java .io .FileInputStream ;
@@ -182,7 +181,7 @@ public HorreumClient build() throws IllegalStateException {
182
181
clientBuilder .register (new DefaultTextPlain ());
183
182
184
183
ResteasyClient client = clientBuilder .build ();
185
- ResteasyWebTarget target = client .target (UriBuilder . fromPath ( this . horreumUrl ) );
184
+ ResteasyWebTarget target = client .target (horreumUrl );
186
185
187
186
return new HorreumClient (client ,
188
187
target .proxyBuilder (ActionService .class ).build (),
You can’t perform that action at this time.
0 commit comments