diff --git a/pic-sure-api-data/pom.xml b/pic-sure-api-data/pom.xml
index 55b6eecd..beed91bd 100755
--- a/pic-sure-api-data/pom.xml
+++ b/pic-sure-api-data/pom.xml
@@ -40,7 +40,6 @@
io.swagger.core.v3
swagger-annotations
- 2.2.8
diff --git a/pic-sure-api-war/pom.xml b/pic-sure-api-war/pom.xml
index b2c3ae41..9d476c96 100755
--- a/pic-sure-api-war/pom.xml
+++ b/pic-sure-api-war/pom.xml
@@ -32,7 +32,6 @@
com.github.tomakehurst
wiremock-jre8
- 2.27.2
test
@@ -69,7 +68,6 @@
org.apache.cxf
cxf-rt-frontend-jaxrs
- 3.4.1
test
diff --git a/pic-sure-api-wildfly/pom.xml b/pic-sure-api-wildfly/pom.xml
index 8b8dc576..6d0e0b58 100644
--- a/pic-sure-api-wildfly/pom.xml
+++ b/pic-sure-api-wildfly/pom.xml
@@ -35,12 +35,6 @@
classes
${project.version}
-
- edu.harvard.hms.dbmi.avillach
- pic-sure-hsapi-resource
- classes
- ${project.version}
-
edu.harvard.hms.dbmi.avillach
pic-sure-resource-api
diff --git a/pic-sure-api-wildfly/src/test/java/edu/harvard/dbmi/avillach/HSAPIResourceIT.java b/pic-sure-api-wildfly/src/test/java/edu/harvard/dbmi/avillach/HSAPIResourceIT.java
deleted file mode 100644
index b4d174af..00000000
--- a/pic-sure-api-wildfly/src/test/java/edu/harvard/dbmi/avillach/HSAPIResourceIT.java
+++ /dev/null
@@ -1,209 +0,0 @@
-package edu.harvard.dbmi.avillach;
-
-import com.fasterxml.jackson.databind.JsonNode;
-import com.fasterxml.jackson.databind.node.ArrayNode;
-import edu.harvard.dbmi.avillach.domain.QueryRequest;
-import edu.harvard.dbmi.avillach.util.exception.ApplicationException;
-import edu.harvard.dbmi.avillach.util.exception.ProtocolException;
-import org.apache.commons.io.IOUtils;
-import org.apache.http.Header;
-import org.apache.http.HttpResponse;
-import org.junit.Test;
-
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
-import static com.github.tomakehurst.wiremock.client.WireMock.*;
-import static edu.harvard.dbmi.avillach.util.HttpClientUtil.*;
-import static org.junit.Assert.*;
-
-public class HSAPIResourceIT extends BaseIT {
-
- private final String targetURL = "http://localhost:8079";
- private Header[] headers;
-
- @Test
- public void testStatus() throws UnsupportedOperationException {
- HttpResponse response = retrieveGetResponse(composeURL(hsapiEndpointUrl,"pic-sure/hsapi/status"), headers);
- assertEquals("Status should return a 200", 200, response.getStatusLine().getStatusCode());
- }
-
- @Test
- public void testInfo() throws UnsupportedOperationException, IOException {
- QueryRequest request = new GeneralQueryRequest();
-
- String body = objectMapper.writeValueAsString(request);
- HttpResponse response = retrievePostResponse(composeURL(hsapiEndpointUrl,"pic-sure/hsapi/info"), headers, body);
- assertEquals("Request should return a 200",200, response.getStatusLine().getStatusCode());
- JsonNode responseNode = objectMapper.readTree(response.getEntity().getContent());
- assertNotNull("Response should not be null", responseNode);
- assertNotNull("Response should have a name", responseNode.get("name"));
- ArrayNode queryFormats = (ArrayNode) responseNode.get("queryFormats");
- assertNotNull("Response should have data in queryFormats", queryFormats);
- assertEquals("Response should have 3 queryFormats", 3, queryFormats.size());
- JsonNode firstFormat = queryFormats.get(0);
- assertNotNull("QueryFormat should have specifications", firstFormat.get("specification"));
-
- }
-
- @Test
- public void testSearch() throws UnsupportedOperationException, IOException {
- QueryRequest queryRequest = new GeneralQueryRequest();
-
- String body = objectMapper.writeValueAsString(queryRequest);
-
- HttpResponse response = retrievePostResponse(composeURL(hsapiEndpointUrl,"pic-sure/hsapi/search"), headers, body);
- assertEquals("Search should return a 501",501, response.getStatusLine().getStatusCode());
- JsonNode responseMessage = objectMapper.readTree(response.getEntity().getContent());
- assertNotNull("Response message should not be null", responseMessage);
- String errorMessage = responseMessage.get("message").asText();
- assertEquals("Error message should be 'Search is not implemented for this resource'", "Search is not implemented for this resource", errorMessage);
- }
-
- @Test
- public void testQuery() throws UnsupportedOperationException, IOException {
- QueryRequest queryRequest = new GeneralQueryRequest();
-
- String body = objectMapper.writeValueAsString(queryRequest);
-
- HttpResponse response = retrievePostResponse(composeURL(hsapiEndpointUrl,"pic-sure/hsapi/query"), headers, body);
- assertEquals("Search should return a 501",501, response.getStatusLine().getStatusCode());
- JsonNode responseMessage = objectMapper.readTree(response.getEntity().getContent());
- assertNotNull("Response message should not be null", responseMessage);
- String errorMessage = responseMessage.get("message").asText();
- assertEquals("Error message should be 'Query is not implemented in this resource. Please use query/sync'", "Query is not implemented in this resource. Please use query/sync", errorMessage);
- }
-
- //These tests will throw a 404 unless we have a valid queryId which can't really be gotten just for a test....
- /*@Test
- public void testQueryStatus() throws UnsupportedOperationException, IOException {
- }
-
- @Test
- public void testRequest() throws UnsupportedOperationException, IOException {
- }*/
-
- @Test
- public void testQuerySync() throws UnsupportedOperationException, IOException {
- Map resourceResponse = new HashMap<>();
- List