Skip to content

Commit

Permalink
test api apache-core5 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Rwolfe-Nava committed Sep 27, 2023
1 parent 3aeebf4 commit b25b812
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,18 @@
<scope>provided</scope>
<type>zip</type>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.core5</groupId>
<artifactId>httpcore5</artifactId>
<version>5.2.3</version>
</dependency>

<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
Expand Down
1 change: 1 addition & 0 deletions api/src/test/java/gov/cms/ab2d/api/controller/TLSTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,6 @@ public void testTLS() throws IOException, CertificateException, NoSuchAlgorithmE
HttpMethod.GET, entity, String.class);

assertEquals(HttpStatus.OK, response.getStatusCode());
httpClient.close();
}
}
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<dependency>
<groupId>org.apache.httpcomponents.core5</groupId>
<artifactId>httpcore5</artifactId>
<version>5.2.2</version>
<version>5.2.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit b25b812

Please sign in to comment.