File tree Expand file tree Collapse file tree 2 files changed +12
-15
lines changed
http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt Expand file tree Collapse file tree 2 files changed +12
-15
lines changed Original file line number Diff line number Diff line change 17
17
18
18
import static software .amazon .awssdk .http .SdkHttpConfigurationOption .TRUST_ALL_CERTIFICATES ;
19
19
20
- import org .junit .AfterClass ;
21
- import org .junit .BeforeClass ;
22
20
import software .amazon .awssdk .http .SdkAsyncHttpClientH1TestSuite ;
23
21
import software .amazon .awssdk .http .async .SdkAsyncHttpClient ;
24
22
import software .amazon .awssdk .utils .AttributeMap ;
28
26
*/
29
27
public class H1ServerBehaviorTest extends SdkAsyncHttpClientH1TestSuite {
30
28
31
- private static final String JDK_TLS_CLIENT_PROTOCOLS = "jdk.tls.client.protocols" ;
32
-
33
- @ BeforeClass
34
- public static void setUp () {
35
- // TODO: remove this once the dependency is fixed
36
- System .setProperty (JDK_TLS_CLIENT_PROTOCOLS , "TLSv1.2" );
37
- }
38
-
39
- @ AfterClass
40
- public static void cleanUp () {
41
- System .clearProperty (JDK_TLS_CLIENT_PROTOCOLS );
42
- }
43
-
44
29
@ Override
45
30
protected SdkAsyncHttpClient setupClient () {
46
31
return AwsCrtAsyncHttpClient .builder ()
Original file line number Diff line number Diff line change 103
103
<groupId >io.netty</groupId >
104
104
<artifactId >netty-handler</artifactId >
105
105
</dependency >
106
+ <dependency >
107
+ <groupId >io.netty</groupId >
108
+ <artifactId >netty-tcnative-boringssl-static</artifactId >
109
+ <scope >compile</scope >
110
+ </dependency >
106
111
</dependencies >
107
112
108
113
<!-- Disable spotbugs for this test module to speed up the build. -->
115
120
<skip >true</skip >
116
121
</configuration >
117
122
</plugin >
123
+ <plugin >
124
+ <groupId >org.apache.maven.plugins</groupId >
125
+ <artifactId >maven-dependency-plugin</artifactId >
126
+ <configuration >
127
+ <skip >true</skip >
128
+ </configuration >
129
+ </plugin >
118
130
</plugins >
119
131
</build >
120
132
</project >
You can’t perform that action at this time.
0 commit comments