Update to Gradle 7.2

Closes gh-45
This commit is contained in:
Marcus Da Coregio
2021-10-04 15:04:13 -03:00
parent 76d4b1e5a3
commit 5097f9dcfc
91 changed files with 108 additions and 116 deletions

View File

@@ -24,7 +24,6 @@ import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.ssl.SSLContexts;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.core.io.ClassPathResource;
@@ -43,13 +42,6 @@ import static org.assertj.core.api.Assertions.assertThatCode;
*/
public class X509Tests {
private int port;
@BeforeEach
void setup() {
this.port = Integer.parseInt(System.getProperty("app.httpPort", "8443"));
}
@Test
void notCertificateThenSslHandshakeException() {
RestTemplate rest = new RestTemplate();