Skip to content

Commit 52bc7a8

Browse files
authored
Bump up CRT version (#2836)
* Bump up CRT version * Set tls version explicity to make the test pass * Use openssl
1 parent 705d6b3 commit 52bc7a8

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/H1ServerBehaviorTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717

1818
import static software.amazon.awssdk.http.SdkHttpConfigurationOption.TRUST_ALL_CERTIFICATES;
1919

20-
import software.amazon.awssdk.crt.io.EventLoopGroup;
21-
import software.amazon.awssdk.crt.io.HostResolver;
2220
import software.amazon.awssdk.http.SdkAsyncHttpClientH1TestSuite;
2321
import software.amazon.awssdk.http.async.SdkAsyncHttpClient;
2422
import software.amazon.awssdk.utils.AttributeMap;

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
<rxjava.version>2.2.21</rxjava.version>
115115
<commons-codec.verion>1.10</commons-codec.verion>
116116
<jmh.version>1.29</jmh.version>
117-
<awscrt.version>0.15.7</awscrt.version>
117+
<awscrt.version>0.15.8</awscrt.version>
118118

119119
<!--Test dependencies -->
120120
<junit.version>4.13.1</junit.version>

test/http-client-tests/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,11 @@
103103
<groupId>io.netty</groupId>
104104
<artifactId>netty-handler</artifactId>
105105
</dependency>
106+
<dependency>
107+
<groupId>io.netty</groupId>
108+
<artifactId>netty-tcnative-boringssl-static</artifactId>
109+
<scope>compile</scope>
110+
</dependency>
106111
</dependencies>
107112

108113
<!-- Disable spotbugs for this test module to speed up the build. -->
@@ -115,6 +120,13 @@
115120
<skip>true</skip>
116121
</configuration>
117122
</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>
118130
</plugins>
119131
</build>
120132
</project>

0 commit comments

Comments
 (0)