diff --git a/pom.xml b/pom.xml index 1482d61..1823406 100644 --- a/pom.xml +++ b/pom.xml @@ -13,13 +13,13 @@ 17 3.26.3 3.13.0 - 3.4.0 - 3.25.1 - 5.11.0 - 1.66.0 + 3.5.2 + 4.28.3 + 5.11.3 + 1.68.1 1.3.2 - 3.16.0 - 2.16.1 + 3.17.0 + 2.17.0 3.11.4 @@ -51,16 +51,11 @@ - wikisearch-model - wikisearch-model-test-resources + search-models + search-models-test-resources - - com.google.protobuf - protobuf-java - ${protobuf.version} - org.assertj assertj-core diff --git a/wikisearch-model-test-resources/pom.xml b/search-models-test-resources/pom.xml similarity index 76% rename from wikisearch-model-test-resources/pom.xml rename to search-models-test-resources/pom.xml index 9eb0126..ddcc755 100644 --- a/wikisearch-model-test-resources/pom.xml +++ b/search-models-test-resources/pom.xml @@ -3,7 +3,7 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - wikisearch-model-test-resources + search-models-test-resources jar 1.0-SNAPSHOT @@ -19,9 +19,27 @@ + + com.fasterxml.jackson.core + jackson-databind + 2.18.1 + + + + com.google.protobuf + protobuf-java-util + ${protobuf.version} + + + + com.google.protobuf + protobuf-java + ${protobuf.version} + + com.krickert.search - wikisearch-model + search-models ${project.version} @@ -37,7 +55,7 @@ com.google.guava guava - 33.3.0-jre + 33.3.1-jre diff --git a/search-models-test-resources/src/main/java/com/krickert/search/model/test/util/JsonToProtoStructConverter.java b/search-models-test-resources/src/main/java/com/krickert/search/model/test/util/JsonToProtoStructConverter.java new file mode 100644 index 0000000..044e455 --- /dev/null +++ b/search-models-test-resources/src/main/java/com/krickert/search/model/test/util/JsonToProtoStructConverter.java @@ -0,0 +1,204 @@ +package com.krickert.search.model.test.util; + +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.google.protobuf.Struct; +import com.google.protobuf.Value; +import com.google.protobuf.ListValue; +import com.google.protobuf.Timestamp; +import com.google.protobuf.util.JsonFormat; +import com.google.protobuf.util.Timestamps; +import org.apache.commons.lang3.time.DateUtils; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.net.URI; +import java.nio.file.Files; +import java.nio.file.Path; +import java.text.ParseException; +import java.time.Instant; +import java.time.format.DateTimeParseException; +import java.util.ArrayList; +import java.util.Date; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import java.util.regex.Pattern; +import java.util.stream.Collectors; + +public class JsonToProtoStructConverter { + + private static final ObjectMapper objectMapper = new ObjectMapper(); + private static final String[] DATE_FORMATS = new String[] { + "yyyy-MM-dd'T'HH:mm:ss'Z'", + "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", + "yyyy-MM-dd'T'HH:mm:ssX", + "yyyy-MM-dd" + }; + + public static List convertJsonToStruct(String jsonString) throws IOException { + JsonNode jsonNode = objectMapper.readTree(jsonString); + if (jsonNode.isArray()) { + return convertJsonArrayToStructList(jsonNode); + } else { + List singleStructList = new ArrayList<>(); + singleStructList.add(convertJsonNodeToStruct(jsonNode, null)); + return singleStructList; + } + } + + public static List convertJsonToStruct(String jsonString, String regex) throws IOException { + JsonNode jsonNode = objectMapper.readTree(jsonString); + Pattern pattern = (regex != null) ? Pattern.compile(regex) : null; + if (jsonNode.isArray()) { + return convertJsonArrayToStructList(jsonNode, pattern); + } else { + List singleStructList = new ArrayList<>(); + singleStructList.add(convertJsonNodeToStruct(jsonNode, pattern)); + return singleStructList; + } + } + + private static List convertJsonArrayToStructList(JsonNode jsonArrayNode) { + return convertJsonArrayToStructList(jsonArrayNode, null); + } + + private static List convertJsonArrayToStructList(JsonNode jsonArrayNode, Pattern pattern) { + List structList = new ArrayList<>(); + for (JsonNode element : jsonArrayNode) { + structList.add(convertJsonNodeToStruct(element, pattern)); + } + return structList; + } + + private static Struct convertJsonNodeToStruct(JsonNode jsonNode, Pattern pattern) { + Struct.Builder structBuilder = Struct.newBuilder(); + + Iterator> fields = jsonNode.fields(); + while (fields.hasNext()) { + Map.Entry field = fields.next(); + if (pattern == null || !pattern.matcher(field.getKey()).matches()) { + structBuilder.putFields(field.getKey(), convertJsonNodeToValue(field.getValue(), pattern)); + } + } + + return structBuilder.build(); + } + + private static Value convertJsonNodeToValue(JsonNode jsonNode, Pattern pattern) { + Value.Builder valueBuilder = Value.newBuilder(); + + if (jsonNode.isNull()) { + valueBuilder.setNullValueValue(0); + } else if (jsonNode.isNumber()) { + if (jsonNode.isInt() || jsonNode.isLong()) { + valueBuilder.setNumberValue(jsonNode.longValue()); + } else if (jsonNode.isDouble()) { + valueBuilder.setNumberValue(jsonNode.doubleValue()); + } + } else if (jsonNode.isTextual()) { + String textValue = jsonNode.textValue(); + try { + // Try parsing as Instant + Instant instant = Instant.parse(textValue); + Timestamp timestamp = Timestamps.fromMillis(instant.toEpochMilli()); + valueBuilder.setStringValue(Timestamps.toString(timestamp)); + } catch (DateTimeParseException e) { + try { + // Try parsing with multiple date formats + Date date = DateUtils.parseDate(textValue, DATE_FORMATS); + Timestamp timestamp = Timestamps.fromMillis(date.getTime()); + valueBuilder.setStringValue(Timestamps.toString(timestamp)); + } catch (ParseException ex) { + valueBuilder.setStringValue(textValue); + } + } + } else if (jsonNode.isBoolean()) { + valueBuilder.setBoolValue(jsonNode.booleanValue()); + } else if (jsonNode.isObject()) { + valueBuilder.setStructValue(convertJsonNodeToStruct(jsonNode, pattern)); + } else if (jsonNode.isArray()) { + ListValue.Builder listValueBuilder = ListValue.newBuilder(); + for (JsonNode element : jsonNode) { + listValueBuilder.addValues(convertJsonNodeToValue(element, pattern)); + } + valueBuilder.setListValue(listValueBuilder); + } + + return valueBuilder.build(); + } + + public static List loadJsonFromResource(String resourceName) throws IOException { + InputStream inputStream = JsonToProtoStructConverter.class.getClassLoader().getResourceAsStream(resourceName); + if (inputStream == null) { + Path path = Path.of(resourceName); + if (Files.exists(path)) { + inputStream = Files.newInputStream(path); + } else { + throw new IOException("Resource not found: " + resourceName); + } + } + + try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) { + String jsonString = reader.lines().collect(Collectors.joining(System.lineSeparator())); + return convertJsonToStruct(jsonString); + } + } + + public static String convertStructToJson(Struct struct) throws IOException { + JsonFormat.Printer printer = JsonFormat.printer(); + String jsonString = printer.print(struct); + JsonNode jsonNode = objectMapper.readTree(jsonString); + + // Fix timestamp fields by converting them back to string representations + Iterator> fields = jsonNode.fields(); + while (fields.hasNext()) { + Map.Entry field = fields.next(); + JsonNode valueNode = field.getValue(); + if (valueNode.isObject() && valueNode.has("timestamp")) { + field.setValue(objectMapper.getNodeFactory().textNode(valueNode.get("timestamp").asText())); + } + } + + return objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(jsonNode); + } + + public static void main(String[] args) { + String json = "{" + + "\"id\": 1234," + + "\"title\": \"Sample Document\"," + + "\"body\": \"This is a test document\"," + + "\"keywords\": [\"sample\", \"test\"]," + + "\"creation_date\": \"2024-01-01T00:00:00Z\"," + + "\"last_updated_date\": \"2024-10-28T12:00:00Z\"," + + "\"is_published\": true," + + "\"_version_\": 1.0," + + "\"custom_data\": {\"additional_field\": \"custom_value\"}" + + "}"; + + try { + List structs = convertJsonToStruct(json, "_version_"); + for (Struct struct : structs) { + System.out.println(JsonFormat.printer().print(struct)); + String originalJson = convertStructToJson(struct); + System.out.println("Converted back to JSON:\n" + originalJson); + } + + try { + List resourceStructs = loadJsonFromResource("example.json"); + for (Struct resourceStruct : resourceStructs) { + System.out.println(JsonFormat.printer().print(resourceStruct)); + String originalJson = convertStructToJson(resourceStruct); + System.out.println("Converted back to JSON:\n" + originalJson); + } + } catch (IOException e) { + System.err.println("Warning: " + e.getMessage()); + } + } catch (IOException e) { + e.printStackTrace(); + } + } +} diff --git a/wikisearch-model-test-resources/src/main/java/com/krickert/search/model/test/util/TestDataHelper.java b/search-models-test-resources/src/main/java/com/krickert/search/model/test/util/TestDataHelper.java similarity index 100% rename from wikisearch-model-test-resources/src/main/java/com/krickert/search/model/test/util/TestDataHelper.java rename to search-models-test-resources/src/main/java/com/krickert/search/model/test/util/TestDataHelper.java diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article000.bin b/search-models-test-resources/src/main/resources/articles/article000.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article000.bin rename to search-models-test-resources/src/main/resources/articles/article000.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article001.bin b/search-models-test-resources/src/main/resources/articles/article001.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article001.bin rename to search-models-test-resources/src/main/resources/articles/article001.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article002.bin b/search-models-test-resources/src/main/resources/articles/article002.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article002.bin rename to search-models-test-resources/src/main/resources/articles/article002.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article003.bin b/search-models-test-resources/src/main/resources/articles/article003.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article003.bin rename to search-models-test-resources/src/main/resources/articles/article003.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article004.bin b/search-models-test-resources/src/main/resources/articles/article004.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article004.bin rename to search-models-test-resources/src/main/resources/articles/article004.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article005.bin b/search-models-test-resources/src/main/resources/articles/article005.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article005.bin rename to search-models-test-resources/src/main/resources/articles/article005.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article006.bin b/search-models-test-resources/src/main/resources/articles/article006.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article006.bin rename to search-models-test-resources/src/main/resources/articles/article006.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article007.bin b/search-models-test-resources/src/main/resources/articles/article007.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article007.bin rename to search-models-test-resources/src/main/resources/articles/article007.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article008.bin b/search-models-test-resources/src/main/resources/articles/article008.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article008.bin rename to search-models-test-resources/src/main/resources/articles/article008.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article009.bin b/search-models-test-resources/src/main/resources/articles/article009.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article009.bin rename to search-models-test-resources/src/main/resources/articles/article009.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article010.bin b/search-models-test-resources/src/main/resources/articles/article010.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article010.bin rename to search-models-test-resources/src/main/resources/articles/article010.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article011.bin b/search-models-test-resources/src/main/resources/articles/article011.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article011.bin rename to search-models-test-resources/src/main/resources/articles/article011.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article012.bin b/search-models-test-resources/src/main/resources/articles/article012.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article012.bin rename to search-models-test-resources/src/main/resources/articles/article012.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article013.bin b/search-models-test-resources/src/main/resources/articles/article013.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article013.bin rename to search-models-test-resources/src/main/resources/articles/article013.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article014.bin b/search-models-test-resources/src/main/resources/articles/article014.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article014.bin rename to search-models-test-resources/src/main/resources/articles/article014.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article015.bin b/search-models-test-resources/src/main/resources/articles/article015.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article015.bin rename to search-models-test-resources/src/main/resources/articles/article015.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article016.bin b/search-models-test-resources/src/main/resources/articles/article016.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article016.bin rename to search-models-test-resources/src/main/resources/articles/article016.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article017.bin b/search-models-test-resources/src/main/resources/articles/article017.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article017.bin rename to search-models-test-resources/src/main/resources/articles/article017.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article018.bin b/search-models-test-resources/src/main/resources/articles/article018.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article018.bin rename to search-models-test-resources/src/main/resources/articles/article018.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article019.bin b/search-models-test-resources/src/main/resources/articles/article019.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article019.bin rename to search-models-test-resources/src/main/resources/articles/article019.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article020.bin b/search-models-test-resources/src/main/resources/articles/article020.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article020.bin rename to search-models-test-resources/src/main/resources/articles/article020.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article021.bin b/search-models-test-resources/src/main/resources/articles/article021.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article021.bin rename to search-models-test-resources/src/main/resources/articles/article021.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article022.bin b/search-models-test-resources/src/main/resources/articles/article022.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article022.bin rename to search-models-test-resources/src/main/resources/articles/article022.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article023.bin b/search-models-test-resources/src/main/resources/articles/article023.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article023.bin rename to search-models-test-resources/src/main/resources/articles/article023.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article024.bin b/search-models-test-resources/src/main/resources/articles/article024.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article024.bin rename to search-models-test-resources/src/main/resources/articles/article024.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article025.bin b/search-models-test-resources/src/main/resources/articles/article025.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article025.bin rename to search-models-test-resources/src/main/resources/articles/article025.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article026.bin b/search-models-test-resources/src/main/resources/articles/article026.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article026.bin rename to search-models-test-resources/src/main/resources/articles/article026.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article027.bin b/search-models-test-resources/src/main/resources/articles/article027.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article027.bin rename to search-models-test-resources/src/main/resources/articles/article027.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article028.bin b/search-models-test-resources/src/main/resources/articles/article028.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article028.bin rename to search-models-test-resources/src/main/resources/articles/article028.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article029.bin b/search-models-test-resources/src/main/resources/articles/article029.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article029.bin rename to search-models-test-resources/src/main/resources/articles/article029.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article030.bin b/search-models-test-resources/src/main/resources/articles/article030.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article030.bin rename to search-models-test-resources/src/main/resources/articles/article030.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article031.bin b/search-models-test-resources/src/main/resources/articles/article031.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article031.bin rename to search-models-test-resources/src/main/resources/articles/article031.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article032.bin b/search-models-test-resources/src/main/resources/articles/article032.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article032.bin rename to search-models-test-resources/src/main/resources/articles/article032.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article033.bin b/search-models-test-resources/src/main/resources/articles/article033.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article033.bin rename to search-models-test-resources/src/main/resources/articles/article033.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article034.bin b/search-models-test-resources/src/main/resources/articles/article034.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article034.bin rename to search-models-test-resources/src/main/resources/articles/article034.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article035.bin b/search-models-test-resources/src/main/resources/articles/article035.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article035.bin rename to search-models-test-resources/src/main/resources/articles/article035.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article036.bin b/search-models-test-resources/src/main/resources/articles/article036.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article036.bin rename to search-models-test-resources/src/main/resources/articles/article036.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article037.bin b/search-models-test-resources/src/main/resources/articles/article037.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article037.bin rename to search-models-test-resources/src/main/resources/articles/article037.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article038.bin b/search-models-test-resources/src/main/resources/articles/article038.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article038.bin rename to search-models-test-resources/src/main/resources/articles/article038.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article039.bin b/search-models-test-resources/src/main/resources/articles/article039.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article039.bin rename to search-models-test-resources/src/main/resources/articles/article039.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article040.bin b/search-models-test-resources/src/main/resources/articles/article040.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article040.bin rename to search-models-test-resources/src/main/resources/articles/article040.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article041.bin b/search-models-test-resources/src/main/resources/articles/article041.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article041.bin rename to search-models-test-resources/src/main/resources/articles/article041.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article042.bin b/search-models-test-resources/src/main/resources/articles/article042.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article042.bin rename to search-models-test-resources/src/main/resources/articles/article042.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article043.bin b/search-models-test-resources/src/main/resources/articles/article043.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article043.bin rename to search-models-test-resources/src/main/resources/articles/article043.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article044.bin b/search-models-test-resources/src/main/resources/articles/article044.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article044.bin rename to search-models-test-resources/src/main/resources/articles/article044.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article045.bin b/search-models-test-resources/src/main/resources/articles/article045.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article045.bin rename to search-models-test-resources/src/main/resources/articles/article045.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article046.bin b/search-models-test-resources/src/main/resources/articles/article046.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article046.bin rename to search-models-test-resources/src/main/resources/articles/article046.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article047.bin b/search-models-test-resources/src/main/resources/articles/article047.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article047.bin rename to search-models-test-resources/src/main/resources/articles/article047.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article048.bin b/search-models-test-resources/src/main/resources/articles/article048.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article048.bin rename to search-models-test-resources/src/main/resources/articles/article048.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article049.bin b/search-models-test-resources/src/main/resources/articles/article049.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article049.bin rename to search-models-test-resources/src/main/resources/articles/article049.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article050.bin b/search-models-test-resources/src/main/resources/articles/article050.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article050.bin rename to search-models-test-resources/src/main/resources/articles/article050.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article051.bin b/search-models-test-resources/src/main/resources/articles/article051.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article051.bin rename to search-models-test-resources/src/main/resources/articles/article051.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article052.bin b/search-models-test-resources/src/main/resources/articles/article052.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article052.bin rename to search-models-test-resources/src/main/resources/articles/article052.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article053.bin b/search-models-test-resources/src/main/resources/articles/article053.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article053.bin rename to search-models-test-resources/src/main/resources/articles/article053.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article054.bin b/search-models-test-resources/src/main/resources/articles/article054.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article054.bin rename to search-models-test-resources/src/main/resources/articles/article054.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article055.bin b/search-models-test-resources/src/main/resources/articles/article055.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article055.bin rename to search-models-test-resources/src/main/resources/articles/article055.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article056.bin b/search-models-test-resources/src/main/resources/articles/article056.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article056.bin rename to search-models-test-resources/src/main/resources/articles/article056.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article057.bin b/search-models-test-resources/src/main/resources/articles/article057.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article057.bin rename to search-models-test-resources/src/main/resources/articles/article057.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article058.bin b/search-models-test-resources/src/main/resources/articles/article058.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article058.bin rename to search-models-test-resources/src/main/resources/articles/article058.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article059.bin b/search-models-test-resources/src/main/resources/articles/article059.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article059.bin rename to search-models-test-resources/src/main/resources/articles/article059.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article060.bin b/search-models-test-resources/src/main/resources/articles/article060.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article060.bin rename to search-models-test-resources/src/main/resources/articles/article060.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article061.bin b/search-models-test-resources/src/main/resources/articles/article061.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article061.bin rename to search-models-test-resources/src/main/resources/articles/article061.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article062.bin b/search-models-test-resources/src/main/resources/articles/article062.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article062.bin rename to search-models-test-resources/src/main/resources/articles/article062.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article063.bin b/search-models-test-resources/src/main/resources/articles/article063.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article063.bin rename to search-models-test-resources/src/main/resources/articles/article063.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article064.bin b/search-models-test-resources/src/main/resources/articles/article064.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article064.bin rename to search-models-test-resources/src/main/resources/articles/article064.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article065.bin b/search-models-test-resources/src/main/resources/articles/article065.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article065.bin rename to search-models-test-resources/src/main/resources/articles/article065.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article066.bin b/search-models-test-resources/src/main/resources/articles/article066.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article066.bin rename to search-models-test-resources/src/main/resources/articles/article066.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article067.bin b/search-models-test-resources/src/main/resources/articles/article067.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article067.bin rename to search-models-test-resources/src/main/resources/articles/article067.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article068.bin b/search-models-test-resources/src/main/resources/articles/article068.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article068.bin rename to search-models-test-resources/src/main/resources/articles/article068.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article069.bin b/search-models-test-resources/src/main/resources/articles/article069.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article069.bin rename to search-models-test-resources/src/main/resources/articles/article069.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article070.bin b/search-models-test-resources/src/main/resources/articles/article070.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article070.bin rename to search-models-test-resources/src/main/resources/articles/article070.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article071.bin b/search-models-test-resources/src/main/resources/articles/article071.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article071.bin rename to search-models-test-resources/src/main/resources/articles/article071.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article072.bin b/search-models-test-resources/src/main/resources/articles/article072.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article072.bin rename to search-models-test-resources/src/main/resources/articles/article072.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article073.bin b/search-models-test-resources/src/main/resources/articles/article073.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article073.bin rename to search-models-test-resources/src/main/resources/articles/article073.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article074.bin b/search-models-test-resources/src/main/resources/articles/article074.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article074.bin rename to search-models-test-resources/src/main/resources/articles/article074.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article075.bin b/search-models-test-resources/src/main/resources/articles/article075.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article075.bin rename to search-models-test-resources/src/main/resources/articles/article075.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article076.bin b/search-models-test-resources/src/main/resources/articles/article076.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article076.bin rename to search-models-test-resources/src/main/resources/articles/article076.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article077.bin b/search-models-test-resources/src/main/resources/articles/article077.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article077.bin rename to search-models-test-resources/src/main/resources/articles/article077.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article078.bin b/search-models-test-resources/src/main/resources/articles/article078.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article078.bin rename to search-models-test-resources/src/main/resources/articles/article078.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article079.bin b/search-models-test-resources/src/main/resources/articles/article079.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article079.bin rename to search-models-test-resources/src/main/resources/articles/article079.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article080.bin b/search-models-test-resources/src/main/resources/articles/article080.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article080.bin rename to search-models-test-resources/src/main/resources/articles/article080.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article081.bin b/search-models-test-resources/src/main/resources/articles/article081.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article081.bin rename to search-models-test-resources/src/main/resources/articles/article081.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article082.bin b/search-models-test-resources/src/main/resources/articles/article082.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article082.bin rename to search-models-test-resources/src/main/resources/articles/article082.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article083.bin b/search-models-test-resources/src/main/resources/articles/article083.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article083.bin rename to search-models-test-resources/src/main/resources/articles/article083.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article084.bin b/search-models-test-resources/src/main/resources/articles/article084.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article084.bin rename to search-models-test-resources/src/main/resources/articles/article084.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article085.bin b/search-models-test-resources/src/main/resources/articles/article085.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article085.bin rename to search-models-test-resources/src/main/resources/articles/article085.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article086.bin b/search-models-test-resources/src/main/resources/articles/article086.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article086.bin rename to search-models-test-resources/src/main/resources/articles/article086.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article087.bin b/search-models-test-resources/src/main/resources/articles/article087.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article087.bin rename to search-models-test-resources/src/main/resources/articles/article087.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article088.bin b/search-models-test-resources/src/main/resources/articles/article088.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article088.bin rename to search-models-test-resources/src/main/resources/articles/article088.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article089.bin b/search-models-test-resources/src/main/resources/articles/article089.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article089.bin rename to search-models-test-resources/src/main/resources/articles/article089.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article090.bin b/search-models-test-resources/src/main/resources/articles/article090.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article090.bin rename to search-models-test-resources/src/main/resources/articles/article090.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article091.bin b/search-models-test-resources/src/main/resources/articles/article091.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article091.bin rename to search-models-test-resources/src/main/resources/articles/article091.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article092.bin b/search-models-test-resources/src/main/resources/articles/article092.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article092.bin rename to search-models-test-resources/src/main/resources/articles/article092.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article093.bin b/search-models-test-resources/src/main/resources/articles/article093.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article093.bin rename to search-models-test-resources/src/main/resources/articles/article093.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article094.bin b/search-models-test-resources/src/main/resources/articles/article094.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article094.bin rename to search-models-test-resources/src/main/resources/articles/article094.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article095.bin b/search-models-test-resources/src/main/resources/articles/article095.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article095.bin rename to search-models-test-resources/src/main/resources/articles/article095.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article096.bin b/search-models-test-resources/src/main/resources/articles/article096.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article096.bin rename to search-models-test-resources/src/main/resources/articles/article096.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article097.bin b/search-models-test-resources/src/main/resources/articles/article097.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article097.bin rename to search-models-test-resources/src/main/resources/articles/article097.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article098.bin b/search-models-test-resources/src/main/resources/articles/article098.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article098.bin rename to search-models-test-resources/src/main/resources/articles/article098.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article099.bin b/search-models-test-resources/src/main/resources/articles/article099.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article099.bin rename to search-models-test-resources/src/main/resources/articles/article099.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article100.bin b/search-models-test-resources/src/main/resources/articles/article100.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article100.bin rename to search-models-test-resources/src/main/resources/articles/article100.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article101.bin b/search-models-test-resources/src/main/resources/articles/article101.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article101.bin rename to search-models-test-resources/src/main/resources/articles/article101.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article102.bin b/search-models-test-resources/src/main/resources/articles/article102.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article102.bin rename to search-models-test-resources/src/main/resources/articles/article102.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article103.bin b/search-models-test-resources/src/main/resources/articles/article103.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article103.bin rename to search-models-test-resources/src/main/resources/articles/article103.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article104.bin b/search-models-test-resources/src/main/resources/articles/article104.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article104.bin rename to search-models-test-resources/src/main/resources/articles/article104.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article105.bin b/search-models-test-resources/src/main/resources/articles/article105.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article105.bin rename to search-models-test-resources/src/main/resources/articles/article105.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article106.bin b/search-models-test-resources/src/main/resources/articles/article106.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article106.bin rename to search-models-test-resources/src/main/resources/articles/article106.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article107.bin b/search-models-test-resources/src/main/resources/articles/article107.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article107.bin rename to search-models-test-resources/src/main/resources/articles/article107.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article108.bin b/search-models-test-resources/src/main/resources/articles/article108.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article108.bin rename to search-models-test-resources/src/main/resources/articles/article108.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article109.bin b/search-models-test-resources/src/main/resources/articles/article109.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article109.bin rename to search-models-test-resources/src/main/resources/articles/article109.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article110.bin b/search-models-test-resources/src/main/resources/articles/article110.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article110.bin rename to search-models-test-resources/src/main/resources/articles/article110.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article111.bin b/search-models-test-resources/src/main/resources/articles/article111.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article111.bin rename to search-models-test-resources/src/main/resources/articles/article111.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article112.bin b/search-models-test-resources/src/main/resources/articles/article112.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article112.bin rename to search-models-test-resources/src/main/resources/articles/article112.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article113.bin b/search-models-test-resources/src/main/resources/articles/article113.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article113.bin rename to search-models-test-resources/src/main/resources/articles/article113.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article114.bin b/search-models-test-resources/src/main/resources/articles/article114.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article114.bin rename to search-models-test-resources/src/main/resources/articles/article114.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article115.bin b/search-models-test-resources/src/main/resources/articles/article115.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article115.bin rename to search-models-test-resources/src/main/resources/articles/article115.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article116.bin b/search-models-test-resources/src/main/resources/articles/article116.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article116.bin rename to search-models-test-resources/src/main/resources/articles/article116.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article117.bin b/search-models-test-resources/src/main/resources/articles/article117.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article117.bin rename to search-models-test-resources/src/main/resources/articles/article117.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article118.bin b/search-models-test-resources/src/main/resources/articles/article118.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article118.bin rename to search-models-test-resources/src/main/resources/articles/article118.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article119.bin b/search-models-test-resources/src/main/resources/articles/article119.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article119.bin rename to search-models-test-resources/src/main/resources/articles/article119.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article120.bin b/search-models-test-resources/src/main/resources/articles/article120.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article120.bin rename to search-models-test-resources/src/main/resources/articles/article120.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article121.bin b/search-models-test-resources/src/main/resources/articles/article121.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article121.bin rename to search-models-test-resources/src/main/resources/articles/article121.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article122.bin b/search-models-test-resources/src/main/resources/articles/article122.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article122.bin rename to search-models-test-resources/src/main/resources/articles/article122.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article123.bin b/search-models-test-resources/src/main/resources/articles/article123.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article123.bin rename to search-models-test-resources/src/main/resources/articles/article123.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article124.bin b/search-models-test-resources/src/main/resources/articles/article124.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article124.bin rename to search-models-test-resources/src/main/resources/articles/article124.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article125.bin b/search-models-test-resources/src/main/resources/articles/article125.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article125.bin rename to search-models-test-resources/src/main/resources/articles/article125.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article126.bin b/search-models-test-resources/src/main/resources/articles/article126.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article126.bin rename to search-models-test-resources/src/main/resources/articles/article126.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article127.bin b/search-models-test-resources/src/main/resources/articles/article127.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article127.bin rename to search-models-test-resources/src/main/resources/articles/article127.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article128.bin b/search-models-test-resources/src/main/resources/articles/article128.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article128.bin rename to search-models-test-resources/src/main/resources/articles/article128.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article129.bin b/search-models-test-resources/src/main/resources/articles/article129.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article129.bin rename to search-models-test-resources/src/main/resources/articles/article129.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article130.bin b/search-models-test-resources/src/main/resources/articles/article130.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article130.bin rename to search-models-test-resources/src/main/resources/articles/article130.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article131.bin b/search-models-test-resources/src/main/resources/articles/article131.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article131.bin rename to search-models-test-resources/src/main/resources/articles/article131.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article132.bin b/search-models-test-resources/src/main/resources/articles/article132.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article132.bin rename to search-models-test-resources/src/main/resources/articles/article132.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article133.bin b/search-models-test-resources/src/main/resources/articles/article133.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article133.bin rename to search-models-test-resources/src/main/resources/articles/article133.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article134.bin b/search-models-test-resources/src/main/resources/articles/article134.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article134.bin rename to search-models-test-resources/src/main/resources/articles/article134.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article135.bin b/search-models-test-resources/src/main/resources/articles/article135.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article135.bin rename to search-models-test-resources/src/main/resources/articles/article135.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article136.bin b/search-models-test-resources/src/main/resources/articles/article136.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article136.bin rename to search-models-test-resources/src/main/resources/articles/article136.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article137.bin b/search-models-test-resources/src/main/resources/articles/article137.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article137.bin rename to search-models-test-resources/src/main/resources/articles/article137.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article138.bin b/search-models-test-resources/src/main/resources/articles/article138.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article138.bin rename to search-models-test-resources/src/main/resources/articles/article138.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article139.bin b/search-models-test-resources/src/main/resources/articles/article139.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article139.bin rename to search-models-test-resources/src/main/resources/articles/article139.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article140.bin b/search-models-test-resources/src/main/resources/articles/article140.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article140.bin rename to search-models-test-resources/src/main/resources/articles/article140.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article141.bin b/search-models-test-resources/src/main/resources/articles/article141.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article141.bin rename to search-models-test-resources/src/main/resources/articles/article141.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article142.bin b/search-models-test-resources/src/main/resources/articles/article142.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article142.bin rename to search-models-test-resources/src/main/resources/articles/article142.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article143.bin b/search-models-test-resources/src/main/resources/articles/article143.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article143.bin rename to search-models-test-resources/src/main/resources/articles/article143.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article144.bin b/search-models-test-resources/src/main/resources/articles/article144.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article144.bin rename to search-models-test-resources/src/main/resources/articles/article144.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article145.bin b/search-models-test-resources/src/main/resources/articles/article145.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article145.bin rename to search-models-test-resources/src/main/resources/articles/article145.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article146.bin b/search-models-test-resources/src/main/resources/articles/article146.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article146.bin rename to search-models-test-resources/src/main/resources/articles/article146.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article147.bin b/search-models-test-resources/src/main/resources/articles/article147.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article147.bin rename to search-models-test-resources/src/main/resources/articles/article147.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article148.bin b/search-models-test-resources/src/main/resources/articles/article148.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article148.bin rename to search-models-test-resources/src/main/resources/articles/article148.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article149.bin b/search-models-test-resources/src/main/resources/articles/article149.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article149.bin rename to search-models-test-resources/src/main/resources/articles/article149.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article150.bin b/search-models-test-resources/src/main/resources/articles/article150.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article150.bin rename to search-models-test-resources/src/main/resources/articles/article150.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article151.bin b/search-models-test-resources/src/main/resources/articles/article151.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article151.bin rename to search-models-test-resources/src/main/resources/articles/article151.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article152.bin b/search-models-test-resources/src/main/resources/articles/article152.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article152.bin rename to search-models-test-resources/src/main/resources/articles/article152.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article153.bin b/search-models-test-resources/src/main/resources/articles/article153.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article153.bin rename to search-models-test-resources/src/main/resources/articles/article153.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article154.bin b/search-models-test-resources/src/main/resources/articles/article154.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article154.bin rename to search-models-test-resources/src/main/resources/articles/article154.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article155.bin b/search-models-test-resources/src/main/resources/articles/article155.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article155.bin rename to search-models-test-resources/src/main/resources/articles/article155.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article156.bin b/search-models-test-resources/src/main/resources/articles/article156.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article156.bin rename to search-models-test-resources/src/main/resources/articles/article156.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article157.bin b/search-models-test-resources/src/main/resources/articles/article157.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article157.bin rename to search-models-test-resources/src/main/resources/articles/article157.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article158.bin b/search-models-test-resources/src/main/resources/articles/article158.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article158.bin rename to search-models-test-resources/src/main/resources/articles/article158.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article159.bin b/search-models-test-resources/src/main/resources/articles/article159.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article159.bin rename to search-models-test-resources/src/main/resources/articles/article159.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article160.bin b/search-models-test-resources/src/main/resources/articles/article160.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article160.bin rename to search-models-test-resources/src/main/resources/articles/article160.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article161.bin b/search-models-test-resources/src/main/resources/articles/article161.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article161.bin rename to search-models-test-resources/src/main/resources/articles/article161.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article162.bin b/search-models-test-resources/src/main/resources/articles/article162.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article162.bin rename to search-models-test-resources/src/main/resources/articles/article162.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article163.bin b/search-models-test-resources/src/main/resources/articles/article163.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article163.bin rename to search-models-test-resources/src/main/resources/articles/article163.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article164.bin b/search-models-test-resources/src/main/resources/articles/article164.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article164.bin rename to search-models-test-resources/src/main/resources/articles/article164.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article165.bin b/search-models-test-resources/src/main/resources/articles/article165.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article165.bin rename to search-models-test-resources/src/main/resources/articles/article165.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article166.bin b/search-models-test-resources/src/main/resources/articles/article166.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article166.bin rename to search-models-test-resources/src/main/resources/articles/article166.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article167.bin b/search-models-test-resources/src/main/resources/articles/article167.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article167.bin rename to search-models-test-resources/src/main/resources/articles/article167.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article168.bin b/search-models-test-resources/src/main/resources/articles/article168.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article168.bin rename to search-models-test-resources/src/main/resources/articles/article168.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article169.bin b/search-models-test-resources/src/main/resources/articles/article169.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article169.bin rename to search-models-test-resources/src/main/resources/articles/article169.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article170.bin b/search-models-test-resources/src/main/resources/articles/article170.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article170.bin rename to search-models-test-resources/src/main/resources/articles/article170.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article171.bin b/search-models-test-resources/src/main/resources/articles/article171.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article171.bin rename to search-models-test-resources/src/main/resources/articles/article171.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article172.bin b/search-models-test-resources/src/main/resources/articles/article172.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article172.bin rename to search-models-test-resources/src/main/resources/articles/article172.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article173.bin b/search-models-test-resources/src/main/resources/articles/article173.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article173.bin rename to search-models-test-resources/src/main/resources/articles/article173.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article174.bin b/search-models-test-resources/src/main/resources/articles/article174.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article174.bin rename to search-models-test-resources/src/main/resources/articles/article174.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article175.bin b/search-models-test-resources/src/main/resources/articles/article175.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article175.bin rename to search-models-test-resources/src/main/resources/articles/article175.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article176.bin b/search-models-test-resources/src/main/resources/articles/article176.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article176.bin rename to search-models-test-resources/src/main/resources/articles/article176.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article177.bin b/search-models-test-resources/src/main/resources/articles/article177.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article177.bin rename to search-models-test-resources/src/main/resources/articles/article177.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article178.bin b/search-models-test-resources/src/main/resources/articles/article178.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article178.bin rename to search-models-test-resources/src/main/resources/articles/article178.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article179.bin b/search-models-test-resources/src/main/resources/articles/article179.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article179.bin rename to search-models-test-resources/src/main/resources/articles/article179.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article180.bin b/search-models-test-resources/src/main/resources/articles/article180.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article180.bin rename to search-models-test-resources/src/main/resources/articles/article180.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article181.bin b/search-models-test-resources/src/main/resources/articles/article181.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article181.bin rename to search-models-test-resources/src/main/resources/articles/article181.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article182.bin b/search-models-test-resources/src/main/resources/articles/article182.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article182.bin rename to search-models-test-resources/src/main/resources/articles/article182.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article183.bin b/search-models-test-resources/src/main/resources/articles/article183.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article183.bin rename to search-models-test-resources/src/main/resources/articles/article183.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article184.bin b/search-models-test-resources/src/main/resources/articles/article184.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article184.bin rename to search-models-test-resources/src/main/resources/articles/article184.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article185.bin b/search-models-test-resources/src/main/resources/articles/article185.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article185.bin rename to search-models-test-resources/src/main/resources/articles/article185.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article186.bin b/search-models-test-resources/src/main/resources/articles/article186.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article186.bin rename to search-models-test-resources/src/main/resources/articles/article186.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article187.bin b/search-models-test-resources/src/main/resources/articles/article187.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article187.bin rename to search-models-test-resources/src/main/resources/articles/article187.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article188.bin b/search-models-test-resources/src/main/resources/articles/article188.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article188.bin rename to search-models-test-resources/src/main/resources/articles/article188.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article189.bin b/search-models-test-resources/src/main/resources/articles/article189.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article189.bin rename to search-models-test-resources/src/main/resources/articles/article189.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article190.bin b/search-models-test-resources/src/main/resources/articles/article190.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article190.bin rename to search-models-test-resources/src/main/resources/articles/article190.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article191.bin b/search-models-test-resources/src/main/resources/articles/article191.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article191.bin rename to search-models-test-resources/src/main/resources/articles/article191.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article192.bin b/search-models-test-resources/src/main/resources/articles/article192.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article192.bin rename to search-models-test-resources/src/main/resources/articles/article192.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article193.bin b/search-models-test-resources/src/main/resources/articles/article193.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article193.bin rename to search-models-test-resources/src/main/resources/articles/article193.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article194.bin b/search-models-test-resources/src/main/resources/articles/article194.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article194.bin rename to search-models-test-resources/src/main/resources/articles/article194.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article195.bin b/search-models-test-resources/src/main/resources/articles/article195.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article195.bin rename to search-models-test-resources/src/main/resources/articles/article195.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article196.bin b/search-models-test-resources/src/main/resources/articles/article196.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article196.bin rename to search-models-test-resources/src/main/resources/articles/article196.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article197.bin b/search-models-test-resources/src/main/resources/articles/article197.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article197.bin rename to search-models-test-resources/src/main/resources/articles/article197.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article198.bin b/search-models-test-resources/src/main/resources/articles/article198.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article198.bin rename to search-models-test-resources/src/main/resources/articles/article198.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article199.bin b/search-models-test-resources/src/main/resources/articles/article199.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article199.bin rename to search-models-test-resources/src/main/resources/articles/article199.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article200.bin b/search-models-test-resources/src/main/resources/articles/article200.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article200.bin rename to search-models-test-resources/src/main/resources/articles/article200.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article201.bin b/search-models-test-resources/src/main/resources/articles/article201.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article201.bin rename to search-models-test-resources/src/main/resources/articles/article201.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article202.bin b/search-models-test-resources/src/main/resources/articles/article202.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article202.bin rename to search-models-test-resources/src/main/resources/articles/article202.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article203.bin b/search-models-test-resources/src/main/resources/articles/article203.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article203.bin rename to search-models-test-resources/src/main/resources/articles/article203.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article204.bin b/search-models-test-resources/src/main/resources/articles/article204.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article204.bin rename to search-models-test-resources/src/main/resources/articles/article204.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article205.bin b/search-models-test-resources/src/main/resources/articles/article205.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article205.bin rename to search-models-test-resources/src/main/resources/articles/article205.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article206.bin b/search-models-test-resources/src/main/resources/articles/article206.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article206.bin rename to search-models-test-resources/src/main/resources/articles/article206.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article207.bin b/search-models-test-resources/src/main/resources/articles/article207.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article207.bin rename to search-models-test-resources/src/main/resources/articles/article207.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article208.bin b/search-models-test-resources/src/main/resources/articles/article208.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article208.bin rename to search-models-test-resources/src/main/resources/articles/article208.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article209.bin b/search-models-test-resources/src/main/resources/articles/article209.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article209.bin rename to search-models-test-resources/src/main/resources/articles/article209.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article210.bin b/search-models-test-resources/src/main/resources/articles/article210.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article210.bin rename to search-models-test-resources/src/main/resources/articles/article210.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article211.bin b/search-models-test-resources/src/main/resources/articles/article211.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article211.bin rename to search-models-test-resources/src/main/resources/articles/article211.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article212.bin b/search-models-test-resources/src/main/resources/articles/article212.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article212.bin rename to search-models-test-resources/src/main/resources/articles/article212.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article213.bin b/search-models-test-resources/src/main/resources/articles/article213.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article213.bin rename to search-models-test-resources/src/main/resources/articles/article213.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article214.bin b/search-models-test-resources/src/main/resources/articles/article214.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article214.bin rename to search-models-test-resources/src/main/resources/articles/article214.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article215.bin b/search-models-test-resources/src/main/resources/articles/article215.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article215.bin rename to search-models-test-resources/src/main/resources/articles/article215.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article216.bin b/search-models-test-resources/src/main/resources/articles/article216.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article216.bin rename to search-models-test-resources/src/main/resources/articles/article216.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article217.bin b/search-models-test-resources/src/main/resources/articles/article217.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article217.bin rename to search-models-test-resources/src/main/resources/articles/article217.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article218.bin b/search-models-test-resources/src/main/resources/articles/article218.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article218.bin rename to search-models-test-resources/src/main/resources/articles/article218.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article219.bin b/search-models-test-resources/src/main/resources/articles/article219.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article219.bin rename to search-models-test-resources/src/main/resources/articles/article219.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article220.bin b/search-models-test-resources/src/main/resources/articles/article220.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article220.bin rename to search-models-test-resources/src/main/resources/articles/article220.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article221.bin b/search-models-test-resources/src/main/resources/articles/article221.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article221.bin rename to search-models-test-resources/src/main/resources/articles/article221.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article222.bin b/search-models-test-resources/src/main/resources/articles/article222.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article222.bin rename to search-models-test-resources/src/main/resources/articles/article222.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article223.bin b/search-models-test-resources/src/main/resources/articles/article223.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article223.bin rename to search-models-test-resources/src/main/resources/articles/article223.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article224.bin b/search-models-test-resources/src/main/resources/articles/article224.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article224.bin rename to search-models-test-resources/src/main/resources/articles/article224.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article225.bin b/search-models-test-resources/src/main/resources/articles/article225.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article225.bin rename to search-models-test-resources/src/main/resources/articles/article225.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article226.bin b/search-models-test-resources/src/main/resources/articles/article226.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article226.bin rename to search-models-test-resources/src/main/resources/articles/article226.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article227.bin b/search-models-test-resources/src/main/resources/articles/article227.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article227.bin rename to search-models-test-resources/src/main/resources/articles/article227.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article228.bin b/search-models-test-resources/src/main/resources/articles/article228.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article228.bin rename to search-models-test-resources/src/main/resources/articles/article228.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article229.bin b/search-models-test-resources/src/main/resources/articles/article229.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article229.bin rename to search-models-test-resources/src/main/resources/articles/article229.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article230.bin b/search-models-test-resources/src/main/resources/articles/article230.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article230.bin rename to search-models-test-resources/src/main/resources/articles/article230.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article231.bin b/search-models-test-resources/src/main/resources/articles/article231.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article231.bin rename to search-models-test-resources/src/main/resources/articles/article231.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article232.bin b/search-models-test-resources/src/main/resources/articles/article232.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article232.bin rename to search-models-test-resources/src/main/resources/articles/article232.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article233.bin b/search-models-test-resources/src/main/resources/articles/article233.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article233.bin rename to search-models-test-resources/src/main/resources/articles/article233.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article234.bin b/search-models-test-resources/src/main/resources/articles/article234.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article234.bin rename to search-models-test-resources/src/main/resources/articles/article234.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article235.bin b/search-models-test-resources/src/main/resources/articles/article235.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article235.bin rename to search-models-test-resources/src/main/resources/articles/article235.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article236.bin b/search-models-test-resources/src/main/resources/articles/article236.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article236.bin rename to search-models-test-resources/src/main/resources/articles/article236.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article237.bin b/search-models-test-resources/src/main/resources/articles/article237.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article237.bin rename to search-models-test-resources/src/main/resources/articles/article237.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article238.bin b/search-models-test-resources/src/main/resources/articles/article238.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article238.bin rename to search-models-test-resources/src/main/resources/articles/article238.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article239.bin b/search-models-test-resources/src/main/resources/articles/article239.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article239.bin rename to search-models-test-resources/src/main/resources/articles/article239.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article240.bin b/search-models-test-resources/src/main/resources/articles/article240.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article240.bin rename to search-models-test-resources/src/main/resources/articles/article240.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article241.bin b/search-models-test-resources/src/main/resources/articles/article241.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article241.bin rename to search-models-test-resources/src/main/resources/articles/article241.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article242.bin b/search-models-test-resources/src/main/resources/articles/article242.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article242.bin rename to search-models-test-resources/src/main/resources/articles/article242.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article243.bin b/search-models-test-resources/src/main/resources/articles/article243.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article243.bin rename to search-models-test-resources/src/main/resources/articles/article243.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article244.bin b/search-models-test-resources/src/main/resources/articles/article244.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article244.bin rename to search-models-test-resources/src/main/resources/articles/article244.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article245.bin b/search-models-test-resources/src/main/resources/articles/article245.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article245.bin rename to search-models-test-resources/src/main/resources/articles/article245.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article246.bin b/search-models-test-resources/src/main/resources/articles/article246.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article246.bin rename to search-models-test-resources/src/main/resources/articles/article246.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article247.bin b/search-models-test-resources/src/main/resources/articles/article247.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article247.bin rename to search-models-test-resources/src/main/resources/articles/article247.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article248.bin b/search-models-test-resources/src/main/resources/articles/article248.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article248.bin rename to search-models-test-resources/src/main/resources/articles/article248.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article249.bin b/search-models-test-resources/src/main/resources/articles/article249.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article249.bin rename to search-models-test-resources/src/main/resources/articles/article249.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article250.bin b/search-models-test-resources/src/main/resources/articles/article250.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article250.bin rename to search-models-test-resources/src/main/resources/articles/article250.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article251.bin b/search-models-test-resources/src/main/resources/articles/article251.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article251.bin rename to search-models-test-resources/src/main/resources/articles/article251.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article252.bin b/search-models-test-resources/src/main/resources/articles/article252.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article252.bin rename to search-models-test-resources/src/main/resources/articles/article252.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article253.bin b/search-models-test-resources/src/main/resources/articles/article253.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article253.bin rename to search-models-test-resources/src/main/resources/articles/article253.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article254.bin b/search-models-test-resources/src/main/resources/articles/article254.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article254.bin rename to search-models-test-resources/src/main/resources/articles/article254.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article255.bin b/search-models-test-resources/src/main/resources/articles/article255.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article255.bin rename to search-models-test-resources/src/main/resources/articles/article255.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article256.bin b/search-models-test-resources/src/main/resources/articles/article256.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article256.bin rename to search-models-test-resources/src/main/resources/articles/article256.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article257.bin b/search-models-test-resources/src/main/resources/articles/article257.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article257.bin rename to search-models-test-resources/src/main/resources/articles/article257.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article258.bin b/search-models-test-resources/src/main/resources/articles/article258.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article258.bin rename to search-models-test-resources/src/main/resources/articles/article258.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article259.bin b/search-models-test-resources/src/main/resources/articles/article259.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article259.bin rename to search-models-test-resources/src/main/resources/articles/article259.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article260.bin b/search-models-test-resources/src/main/resources/articles/article260.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article260.bin rename to search-models-test-resources/src/main/resources/articles/article260.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article261.bin b/search-models-test-resources/src/main/resources/articles/article261.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article261.bin rename to search-models-test-resources/src/main/resources/articles/article261.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article262.bin b/search-models-test-resources/src/main/resources/articles/article262.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article262.bin rename to search-models-test-resources/src/main/resources/articles/article262.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article263.bin b/search-models-test-resources/src/main/resources/articles/article263.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article263.bin rename to search-models-test-resources/src/main/resources/articles/article263.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article264.bin b/search-models-test-resources/src/main/resources/articles/article264.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article264.bin rename to search-models-test-resources/src/main/resources/articles/article264.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article265.bin b/search-models-test-resources/src/main/resources/articles/article265.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article265.bin rename to search-models-test-resources/src/main/resources/articles/article265.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article266.bin b/search-models-test-resources/src/main/resources/articles/article266.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article266.bin rename to search-models-test-resources/src/main/resources/articles/article266.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article267.bin b/search-models-test-resources/src/main/resources/articles/article267.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article267.bin rename to search-models-test-resources/src/main/resources/articles/article267.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article268.bin b/search-models-test-resources/src/main/resources/articles/article268.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article268.bin rename to search-models-test-resources/src/main/resources/articles/article268.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article269.bin b/search-models-test-resources/src/main/resources/articles/article269.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article269.bin rename to search-models-test-resources/src/main/resources/articles/article269.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article270.bin b/search-models-test-resources/src/main/resources/articles/article270.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article270.bin rename to search-models-test-resources/src/main/resources/articles/article270.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article271.bin b/search-models-test-resources/src/main/resources/articles/article271.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article271.bin rename to search-models-test-resources/src/main/resources/articles/article271.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article272.bin b/search-models-test-resources/src/main/resources/articles/article272.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article272.bin rename to search-models-test-resources/src/main/resources/articles/article272.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article273.bin b/search-models-test-resources/src/main/resources/articles/article273.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article273.bin rename to search-models-test-resources/src/main/resources/articles/article273.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article274.bin b/search-models-test-resources/src/main/resources/articles/article274.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article274.bin rename to search-models-test-resources/src/main/resources/articles/article274.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article275.bin b/search-models-test-resources/src/main/resources/articles/article275.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article275.bin rename to search-models-test-resources/src/main/resources/articles/article275.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article276.bin b/search-models-test-resources/src/main/resources/articles/article276.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article276.bin rename to search-models-test-resources/src/main/resources/articles/article276.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article277.bin b/search-models-test-resources/src/main/resources/articles/article277.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article277.bin rename to search-models-test-resources/src/main/resources/articles/article277.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article278.bin b/search-models-test-resources/src/main/resources/articles/article278.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article278.bin rename to search-models-test-resources/src/main/resources/articles/article278.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article279.bin b/search-models-test-resources/src/main/resources/articles/article279.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article279.bin rename to search-models-test-resources/src/main/resources/articles/article279.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article280.bin b/search-models-test-resources/src/main/resources/articles/article280.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article280.bin rename to search-models-test-resources/src/main/resources/articles/article280.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article281.bin b/search-models-test-resources/src/main/resources/articles/article281.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article281.bin rename to search-models-test-resources/src/main/resources/articles/article281.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article282.bin b/search-models-test-resources/src/main/resources/articles/article282.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article282.bin rename to search-models-test-resources/src/main/resources/articles/article282.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article283.bin b/search-models-test-resources/src/main/resources/articles/article283.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article283.bin rename to search-models-test-resources/src/main/resources/articles/article283.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article284.bin b/search-models-test-resources/src/main/resources/articles/article284.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article284.bin rename to search-models-test-resources/src/main/resources/articles/article284.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article285.bin b/search-models-test-resources/src/main/resources/articles/article285.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article285.bin rename to search-models-test-resources/src/main/resources/articles/article285.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article286.bin b/search-models-test-resources/src/main/resources/articles/article286.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article286.bin rename to search-models-test-resources/src/main/resources/articles/article286.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article287.bin b/search-models-test-resources/src/main/resources/articles/article287.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article287.bin rename to search-models-test-resources/src/main/resources/articles/article287.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article288.bin b/search-models-test-resources/src/main/resources/articles/article288.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article288.bin rename to search-models-test-resources/src/main/resources/articles/article288.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article289.bin b/search-models-test-resources/src/main/resources/articles/article289.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article289.bin rename to search-models-test-resources/src/main/resources/articles/article289.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article290.bin b/search-models-test-resources/src/main/resources/articles/article290.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article290.bin rename to search-models-test-resources/src/main/resources/articles/article290.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article291.bin b/search-models-test-resources/src/main/resources/articles/article291.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article291.bin rename to search-models-test-resources/src/main/resources/articles/article291.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article292.bin b/search-models-test-resources/src/main/resources/articles/article292.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article292.bin rename to search-models-test-resources/src/main/resources/articles/article292.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article293.bin b/search-models-test-resources/src/main/resources/articles/article293.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article293.bin rename to search-models-test-resources/src/main/resources/articles/article293.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article294.bin b/search-models-test-resources/src/main/resources/articles/article294.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article294.bin rename to search-models-test-resources/src/main/resources/articles/article294.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article295.bin b/search-models-test-resources/src/main/resources/articles/article295.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article295.bin rename to search-models-test-resources/src/main/resources/articles/article295.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article296.bin b/search-models-test-resources/src/main/resources/articles/article296.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article296.bin rename to search-models-test-resources/src/main/resources/articles/article296.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article297.bin b/search-models-test-resources/src/main/resources/articles/article297.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article297.bin rename to search-models-test-resources/src/main/resources/articles/article297.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article298.bin b/search-models-test-resources/src/main/resources/articles/article298.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article298.bin rename to search-models-test-resources/src/main/resources/articles/article298.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article299.bin b/search-models-test-resources/src/main/resources/articles/article299.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article299.bin rename to search-models-test-resources/src/main/resources/articles/article299.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article300.bin b/search-models-test-resources/src/main/resources/articles/article300.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article300.bin rename to search-models-test-resources/src/main/resources/articles/article300.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article301.bin b/search-models-test-resources/src/main/resources/articles/article301.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article301.bin rename to search-models-test-resources/src/main/resources/articles/article301.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article302.bin b/search-models-test-resources/src/main/resources/articles/article302.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article302.bin rename to search-models-test-resources/src/main/resources/articles/article302.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article303.bin b/search-models-test-resources/src/main/resources/articles/article303.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article303.bin rename to search-models-test-resources/src/main/resources/articles/article303.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article304.bin b/search-models-test-resources/src/main/resources/articles/article304.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article304.bin rename to search-models-test-resources/src/main/resources/articles/article304.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article305.bin b/search-models-test-resources/src/main/resources/articles/article305.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article305.bin rename to search-models-test-resources/src/main/resources/articles/article305.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article306.bin b/search-models-test-resources/src/main/resources/articles/article306.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article306.bin rename to search-models-test-resources/src/main/resources/articles/article306.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article307.bin b/search-models-test-resources/src/main/resources/articles/article307.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article307.bin rename to search-models-test-resources/src/main/resources/articles/article307.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article308.bin b/search-models-test-resources/src/main/resources/articles/article308.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article308.bin rename to search-models-test-resources/src/main/resources/articles/article308.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article309.bin b/search-models-test-resources/src/main/resources/articles/article309.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article309.bin rename to search-models-test-resources/src/main/resources/articles/article309.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article310.bin b/search-models-test-resources/src/main/resources/articles/article310.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article310.bin rename to search-models-test-resources/src/main/resources/articles/article310.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article311.bin b/search-models-test-resources/src/main/resources/articles/article311.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article311.bin rename to search-models-test-resources/src/main/resources/articles/article311.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article312.bin b/search-models-test-resources/src/main/resources/articles/article312.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article312.bin rename to search-models-test-resources/src/main/resources/articles/article312.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article313.bin b/search-models-test-resources/src/main/resources/articles/article313.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article313.bin rename to search-models-test-resources/src/main/resources/articles/article313.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article314.bin b/search-models-test-resources/src/main/resources/articles/article314.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article314.bin rename to search-models-test-resources/src/main/resources/articles/article314.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article315.bin b/search-models-test-resources/src/main/resources/articles/article315.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article315.bin rename to search-models-test-resources/src/main/resources/articles/article315.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article316.bin b/search-models-test-resources/src/main/resources/articles/article316.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article316.bin rename to search-models-test-resources/src/main/resources/articles/article316.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article317.bin b/search-models-test-resources/src/main/resources/articles/article317.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article317.bin rename to search-models-test-resources/src/main/resources/articles/article317.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article318.bin b/search-models-test-resources/src/main/resources/articles/article318.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article318.bin rename to search-models-test-resources/src/main/resources/articles/article318.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article319.bin b/search-models-test-resources/src/main/resources/articles/article319.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article319.bin rename to search-models-test-resources/src/main/resources/articles/article319.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article320.bin b/search-models-test-resources/src/main/resources/articles/article320.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article320.bin rename to search-models-test-resources/src/main/resources/articles/article320.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article321.bin b/search-models-test-resources/src/main/resources/articles/article321.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article321.bin rename to search-models-test-resources/src/main/resources/articles/article321.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article322.bin b/search-models-test-resources/src/main/resources/articles/article322.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article322.bin rename to search-models-test-resources/src/main/resources/articles/article322.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article323.bin b/search-models-test-resources/src/main/resources/articles/article323.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article323.bin rename to search-models-test-resources/src/main/resources/articles/article323.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article324.bin b/search-models-test-resources/src/main/resources/articles/article324.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article324.bin rename to search-models-test-resources/src/main/resources/articles/article324.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article325.bin b/search-models-test-resources/src/main/resources/articles/article325.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article325.bin rename to search-models-test-resources/src/main/resources/articles/article325.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article326.bin b/search-models-test-resources/src/main/resources/articles/article326.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article326.bin rename to search-models-test-resources/src/main/resources/articles/article326.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article327.bin b/search-models-test-resources/src/main/resources/articles/article327.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article327.bin rename to search-models-test-resources/src/main/resources/articles/article327.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article328.bin b/search-models-test-resources/src/main/resources/articles/article328.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article328.bin rename to search-models-test-resources/src/main/resources/articles/article328.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article329.bin b/search-models-test-resources/src/main/resources/articles/article329.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article329.bin rename to search-models-test-resources/src/main/resources/articles/article329.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article330.bin b/search-models-test-resources/src/main/resources/articles/article330.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article330.bin rename to search-models-test-resources/src/main/resources/articles/article330.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article331.bin b/search-models-test-resources/src/main/resources/articles/article331.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article331.bin rename to search-models-test-resources/src/main/resources/articles/article331.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article332.bin b/search-models-test-resources/src/main/resources/articles/article332.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article332.bin rename to search-models-test-resources/src/main/resources/articles/article332.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article333.bin b/search-models-test-resources/src/main/resources/articles/article333.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article333.bin rename to search-models-test-resources/src/main/resources/articles/article333.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article334.bin b/search-models-test-resources/src/main/resources/articles/article334.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article334.bin rename to search-models-test-resources/src/main/resources/articles/article334.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article335.bin b/search-models-test-resources/src/main/resources/articles/article335.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article335.bin rename to search-models-test-resources/src/main/resources/articles/article335.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article336.bin b/search-models-test-resources/src/main/resources/articles/article336.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article336.bin rename to search-models-test-resources/src/main/resources/articles/article336.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article337.bin b/search-models-test-resources/src/main/resources/articles/article337.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article337.bin rename to search-models-test-resources/src/main/resources/articles/article337.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article338.bin b/search-models-test-resources/src/main/resources/articles/article338.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article338.bin rename to search-models-test-resources/src/main/resources/articles/article338.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article339.bin b/search-models-test-resources/src/main/resources/articles/article339.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article339.bin rename to search-models-test-resources/src/main/resources/articles/article339.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article340.bin b/search-models-test-resources/src/main/resources/articles/article340.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article340.bin rename to search-models-test-resources/src/main/resources/articles/article340.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article341.bin b/search-models-test-resources/src/main/resources/articles/article341.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article341.bin rename to search-models-test-resources/src/main/resources/articles/article341.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article342.bin b/search-models-test-resources/src/main/resources/articles/article342.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article342.bin rename to search-models-test-resources/src/main/resources/articles/article342.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article343.bin b/search-models-test-resources/src/main/resources/articles/article343.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article343.bin rename to search-models-test-resources/src/main/resources/articles/article343.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article344.bin b/search-models-test-resources/src/main/resources/articles/article344.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article344.bin rename to search-models-test-resources/src/main/resources/articles/article344.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article345.bin b/search-models-test-resources/src/main/resources/articles/article345.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article345.bin rename to search-models-test-resources/src/main/resources/articles/article345.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article346.bin b/search-models-test-resources/src/main/resources/articles/article346.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article346.bin rename to search-models-test-resources/src/main/resources/articles/article346.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article347.bin b/search-models-test-resources/src/main/resources/articles/article347.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article347.bin rename to search-models-test-resources/src/main/resources/articles/article347.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article348.bin b/search-models-test-resources/src/main/resources/articles/article348.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article348.bin rename to search-models-test-resources/src/main/resources/articles/article348.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article349.bin b/search-models-test-resources/src/main/resources/articles/article349.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article349.bin rename to search-models-test-resources/src/main/resources/articles/article349.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article350.bin b/search-models-test-resources/src/main/resources/articles/article350.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article350.bin rename to search-models-test-resources/src/main/resources/articles/article350.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article351.bin b/search-models-test-resources/src/main/resources/articles/article351.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article351.bin rename to search-models-test-resources/src/main/resources/articles/article351.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article352.bin b/search-models-test-resources/src/main/resources/articles/article352.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article352.bin rename to search-models-test-resources/src/main/resources/articles/article352.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article353.bin b/search-models-test-resources/src/main/resources/articles/article353.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article353.bin rename to search-models-test-resources/src/main/resources/articles/article353.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article354.bin b/search-models-test-resources/src/main/resources/articles/article354.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article354.bin rename to search-models-test-resources/src/main/resources/articles/article354.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article355.bin b/search-models-test-resources/src/main/resources/articles/article355.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article355.bin rename to search-models-test-resources/src/main/resources/articles/article355.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article356.bin b/search-models-test-resources/src/main/resources/articles/article356.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article356.bin rename to search-models-test-resources/src/main/resources/articles/article356.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article357.bin b/search-models-test-resources/src/main/resources/articles/article357.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article357.bin rename to search-models-test-resources/src/main/resources/articles/article357.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article358.bin b/search-models-test-resources/src/main/resources/articles/article358.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article358.bin rename to search-models-test-resources/src/main/resources/articles/article358.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article359.bin b/search-models-test-resources/src/main/resources/articles/article359.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article359.bin rename to search-models-test-resources/src/main/resources/articles/article359.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article360.bin b/search-models-test-resources/src/main/resources/articles/article360.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article360.bin rename to search-models-test-resources/src/main/resources/articles/article360.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article361.bin b/search-models-test-resources/src/main/resources/articles/article361.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article361.bin rename to search-models-test-resources/src/main/resources/articles/article361.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article362.bin b/search-models-test-resources/src/main/resources/articles/article362.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article362.bin rename to search-models-test-resources/src/main/resources/articles/article362.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article363.bin b/search-models-test-resources/src/main/resources/articles/article363.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article363.bin rename to search-models-test-resources/src/main/resources/articles/article363.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article364.bin b/search-models-test-resources/src/main/resources/articles/article364.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article364.bin rename to search-models-test-resources/src/main/resources/articles/article364.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article365.bin b/search-models-test-resources/src/main/resources/articles/article365.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article365.bin rename to search-models-test-resources/src/main/resources/articles/article365.bin diff --git a/wikisearch-model-test-resources/src/main/resources/articles/article366.bin b/search-models-test-resources/src/main/resources/articles/article366.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/articles/article366.bin rename to search-models-test-resources/src/main/resources/articles/article366.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document000.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document000.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document000.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document000.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document001.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document001.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document001.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document001.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document002.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document002.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document002.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document002.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document003.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document003.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document003.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document003.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document004.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document004.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document004.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document004.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document005.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document005.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document005.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document005.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document006.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document006.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document006.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document006.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document007.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document007.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document007.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document007.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document008.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document008.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document008.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document008.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document009.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document009.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document009.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document009.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document010.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document010.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document010.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document010.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document011.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document011.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document011.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document011.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document012.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document012.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document012.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document012.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document013.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document013.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document013.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document013.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document014.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document014.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document014.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document014.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document015.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document015.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document015.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document015.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document016.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document016.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document016.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document016.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document017.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document017.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document017.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document017.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document018.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document018.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document018.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document018.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document019.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document019.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document019.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document019.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document020.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document020.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document020.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document020.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document021.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document021.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document021.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document021.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document022.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document022.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document022.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document022.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document023.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document023.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document023.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document023.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document024.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document024.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document024.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document024.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document025.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document025.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document025.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document025.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document026.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document026.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document026.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document026.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document027.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document027.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document027.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document027.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document028.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document028.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document028.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document028.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document029.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document029.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document029.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document029.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document030.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document030.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document030.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document030.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document031.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document031.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document031.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document031.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document032.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document032.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document032.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document032.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document033.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document033.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document033.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document033.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document034.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document034.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document034.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document034.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document035.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document035.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document035.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document035.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document036.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document036.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document036.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document036.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document037.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document037.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document037.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document037.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document038.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document038.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document038.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document038.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document039.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document039.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document039.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document039.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document040.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document040.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document040.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document040.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document041.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document041.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document041.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document041.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document042.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document042.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document042.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document042.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document043.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document043.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document043.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document043.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document044.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document044.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document044.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document044.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document045.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document045.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document045.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document045.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document046.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document046.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document046.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document046.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document047.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document047.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document047.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document047.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document048.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document048.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document048.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document048.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document049.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document049.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document049.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document049.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document050.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document050.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document050.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document050.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document051.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document051.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document051.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document051.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document052.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document052.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document052.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document052.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document053.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document053.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document053.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document053.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document054.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document054.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document054.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document054.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document055.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document055.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document055.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document055.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document056.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document056.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document056.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document056.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document057.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document057.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document057.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document057.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document058.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document058.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document058.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document058.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document059.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document059.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document059.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document059.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document060.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document060.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document060.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document060.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document061.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document061.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document061.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document061.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document062.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document062.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document062.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document062.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document063.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document063.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document063.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document063.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document064.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document064.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document064.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document064.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document065.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document065.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document065.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document065.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document066.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document066.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document066.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document066.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document067.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document067.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document067.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document067.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document068.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document068.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document068.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document068.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document069.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document069.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document069.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document069.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document070.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document070.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document070.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document070.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document071.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document071.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document071.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document071.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document072.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document072.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document072.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document072.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document073.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document073.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document073.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document073.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document074.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document074.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document074.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document074.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document075.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document075.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document075.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document075.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document076.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document076.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document076.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document076.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document077.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document077.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document077.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document077.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document078.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document078.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document078.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document078.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document079.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document079.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document079.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document079.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document080.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document080.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document080.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document080.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document081.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document081.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document081.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document081.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document082.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document082.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document082.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document082.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document083.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document083.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document083.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document083.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document084.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document084.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document084.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document084.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document085.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document085.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document085.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document085.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document086.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document086.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document086.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document086.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document087.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document087.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document087.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document087.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document088.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document088.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document088.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document088.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document089.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document089.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document089.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document089.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document090.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document090.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document090.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document090.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document091.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document091.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document091.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document091.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document092.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document092.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document092.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document092.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document093.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document093.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document093.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document093.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document094.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document094.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document094.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document094.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document095.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document095.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document095.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document095.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document096.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document096.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document096.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document096.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document097.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document097.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document097.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document097.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document098.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document098.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document098.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document098.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document099.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document099.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document099.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document099.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document100.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document100.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document100.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document100.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document101.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document101.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document101.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document101.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document102.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document102.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document102.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document102.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document103.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document103.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document103.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document103.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document104.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document104.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document104.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document104.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document105.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document105.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document105.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document105.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document106.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document106.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document106.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document106.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document107.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document107.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document107.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document107.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document108.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document108.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document108.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document108.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document109.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document109.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document109.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document109.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document110.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document110.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document110.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document110.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document111.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document111.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document111.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document111.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document112.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document112.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document112.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document112.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document113.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document113.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document113.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document113.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document114.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document114.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document114.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document114.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document115.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document115.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document115.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document115.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document116.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document116.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document116.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document116.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document117.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document117.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document117.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document117.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document118.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document118.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document118.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document118.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document119.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document119.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document119.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document119.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document120.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document120.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document120.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document120.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document121.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document121.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document121.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document121.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document122.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document122.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document122.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document122.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document123.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document123.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document123.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document123.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document124.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document124.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document124.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document124.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document125.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document125.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document125.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document125.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document126.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document126.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document126.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document126.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document127.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document127.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document127.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document127.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document128.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document128.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document128.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document128.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document129.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document129.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document129.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document129.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document130.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document130.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document130.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document130.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document131.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document131.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document131.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document131.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document132.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document132.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document132.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document132.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document133.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document133.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document133.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document133.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document134.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document134.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document134.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document134.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document135.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document135.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document135.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document135.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document136.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document136.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document136.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document136.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document137.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document137.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document137.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document137.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document138.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document138.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document138.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document138.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document139.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document139.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document139.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document139.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document140.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document140.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document140.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document140.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document141.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document141.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document141.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document141.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document142.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document142.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document142.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document142.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document143.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document143.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document143.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document143.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document144.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document144.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document144.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document144.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document145.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document145.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document145.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document145.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document146.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document146.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document146.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document146.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document147.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document147.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document147.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document147.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document148.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document148.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document148.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document148.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document149.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document149.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document149.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document149.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document150.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document150.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document150.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document150.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document151.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document151.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document151.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document151.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document152.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document152.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document152.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document152.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document153.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document153.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document153.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document153.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document154.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document154.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document154.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document154.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document155.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document155.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document155.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document155.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document156.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document156.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document156.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document156.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document157.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document157.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document157.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document157.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document158.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document158.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document158.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document158.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document159.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document159.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document159.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document159.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document160.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document160.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document160.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document160.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document161.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document161.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document161.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document161.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document162.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document162.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document162.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document162.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document163.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document163.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document163.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document163.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document164.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document164.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document164.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document164.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document165.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document165.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document165.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document165.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document166.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document166.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document166.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document166.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document167.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document167.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document167.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document167.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document168.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document168.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document168.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document168.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document169.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document169.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document169.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document169.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document170.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document170.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document170.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document170.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document171.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document171.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document171.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document171.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document172.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document172.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document172.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document172.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document173.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document173.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document173.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document173.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document174.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document174.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document174.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document174.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document175.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document175.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document175.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document175.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document176.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document176.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document176.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document176.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document177.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document177.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document177.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document177.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document178.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document178.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document178.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document178.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document179.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document179.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document179.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document179.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document180.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document180.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document180.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document180.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document181.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document181.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document181.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document181.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document182.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document182.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document182.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document182.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document183.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document183.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document183.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document183.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document184.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document184.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document184.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document184.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document185.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document185.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document185.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document185.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document186.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document186.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document186.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document186.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document187.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document187.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document187.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document187.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document188.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document188.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document188.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document188.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document189.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document189.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document189.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document189.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document190.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document190.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document190.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document190.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document191.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document191.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document191.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document191.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document192.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document192.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document192.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document192.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document193.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document193.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document193.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document193.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document194.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document194.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document194.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document194.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document195.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document195.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document195.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document195.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document196.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document196.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document196.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document196.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document197.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document197.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document197.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document197.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document198.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document198.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document198.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document198.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document199.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document199.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document199.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document199.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document200.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document200.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document200.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document200.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document201.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document201.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document201.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document201.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document202.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document202.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document202.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document202.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document203.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document203.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document203.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document203.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document204.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document204.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document204.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document204.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document205.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document205.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document205.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document205.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document206.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document206.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document206.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document206.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document207.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document207.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document207.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document207.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document208.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document208.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document208.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document208.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document209.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document209.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document209.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document209.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document210.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document210.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document210.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document210.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document211.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document211.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document211.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document211.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document212.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document212.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document212.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document212.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document213.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document213.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document213.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document213.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document214.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document214.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document214.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document214.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document215.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document215.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document215.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document215.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document216.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document216.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document216.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document216.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document217.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document217.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document217.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document217.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document218.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document218.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document218.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document218.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document219.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document219.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document219.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document219.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document220.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document220.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document220.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document220.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document221.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document221.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document221.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document221.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document222.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document222.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document222.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document222.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document223.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document223.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document223.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document223.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document224.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document224.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document224.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document224.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document225.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document225.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document225.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document225.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document226.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document226.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document226.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document226.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document227.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document227.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document227.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document227.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document228.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document228.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document228.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document228.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document229.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document229.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document229.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document229.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document230.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document230.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document230.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document230.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document231.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document231.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document231.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document231.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document232.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document232.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document232.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document232.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document233.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document233.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document233.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document233.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document234.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document234.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document234.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document234.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document235.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document235.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document235.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document235.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document236.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document236.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document236.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document236.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document237.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document237.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document237.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document237.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document238.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document238.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document238.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document238.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document239.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document239.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document239.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document239.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document240.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document240.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document240.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document240.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document241.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document241.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document241.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document241.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document242.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document242.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document242.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document242.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document243.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document243.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document243.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document243.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document244.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document244.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document244.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document244.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document245.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document245.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document245.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document245.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document246.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document246.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document246.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document246.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document247.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document247.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document247.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document247.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document248.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document248.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document248.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document248.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document249.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document249.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document249.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document249.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document250.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document250.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document250.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document250.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document251.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document251.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document251.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document251.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document252.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document252.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document252.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document252.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document253.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document253.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document253.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document253.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document254.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document254.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document254.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document254.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document255.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document255.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document255.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document255.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document256.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document256.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document256.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document256.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document257.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document257.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document257.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document257.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document258.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document258.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document258.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document258.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document259.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document259.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document259.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document259.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document260.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document260.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document260.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document260.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document261.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document261.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document261.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document261.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document262.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document262.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document262.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document262.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document263.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document263.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document263.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document263.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document264.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document264.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document264.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document264.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document265.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document265.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document265.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document265.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document266.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document266.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document266.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document266.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document267.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document267.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document267.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document267.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document268.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document268.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document268.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document268.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document269.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document269.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document269.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document269.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document270.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document270.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document270.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document270.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document271.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document271.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document271.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document271.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document272.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document272.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document272.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document272.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document273.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document273.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document273.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document273.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document274.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document274.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document274.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document274.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document275.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document275.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document275.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document275.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document276.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document276.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document276.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document276.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document277.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document277.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document277.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document277.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document278.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document278.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document278.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document278.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document279.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document279.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document279.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document279.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document280.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document280.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document280.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document280.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document281.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document281.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document281.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document281.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document282.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document282.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document282.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document282.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document283.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document283.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document283.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document283.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document284.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document284.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document284.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document284.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document285.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document285.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document285.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document285.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document286.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document286.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document286.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document286.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document287.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document287.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document287.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document287.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document288.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document288.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document288.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document288.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document289.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document289.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document289.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document289.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document290.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document290.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document290.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document290.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document291.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document291.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document291.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document291.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document292.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document292.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document292.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document292.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document293.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document293.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document293.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document293.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document294.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document294.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document294.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document294.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document295.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document295.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document295.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document295.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document296.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document296.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document296.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document296.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document297.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document297.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document297.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document297.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document298.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document298.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document298.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document298.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document299.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document299.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document299.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document299.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document300.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document300.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document300.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document300.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document301.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document301.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document301.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document301.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document302.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document302.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document302.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document302.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document303.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document303.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document303.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document303.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document304.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document304.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document304.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document304.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document305.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document305.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document305.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document305.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document306.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document306.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document306.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document306.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document307.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document307.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document307.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document307.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document308.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document308.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document308.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document308.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document309.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document309.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document309.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document309.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document310.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document310.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document310.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document310.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document311.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document311.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document311.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document311.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document312.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document312.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document312.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document312.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document313.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document313.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document313.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document313.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document314.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document314.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document314.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document314.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document315.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document315.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document315.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document315.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document316.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document316.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document316.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document316.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document317.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document317.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document317.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document317.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document318.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document318.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document318.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document318.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document319.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document319.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document319.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document319.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document320.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document320.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document320.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document320.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document321.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document321.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document321.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document321.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document322.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document322.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document322.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document322.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document323.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document323.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document323.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document323.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document324.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document324.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document324.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document324.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document325.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document325.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document325.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document325.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document326.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document326.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document326.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document326.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document327.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document327.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document327.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document327.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document328.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document328.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document328.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document328.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document329.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document329.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document329.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document329.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document330.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document330.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document330.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document330.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document331.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document331.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document331.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document331.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document332.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document332.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document332.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document332.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document333.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document333.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document333.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document333.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document334.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document334.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document334.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document334.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document335.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document335.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document335.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document335.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document336.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document336.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document336.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document336.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document337.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document337.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document337.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document337.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document338.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document338.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document338.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document338.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document339.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document339.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document339.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document339.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document340.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document340.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document340.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document340.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document341.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document341.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document341.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document341.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document342.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document342.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document342.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document342.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document343.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document343.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document343.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document343.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document344.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document344.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document344.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document344.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document345.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document345.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document345.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document345.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document346.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document346.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document346.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document346.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document347.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document347.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document347.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document347.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document348.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document348.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document348.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document348.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document349.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document349.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document349.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document349.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document350.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document350.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document350.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document350.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document351.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document351.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document351.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document351.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document352.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document352.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document352.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document352.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document353.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document353.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document353.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document353.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document354.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document354.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document354.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document354.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document355.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document355.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document355.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document355.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document356.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document356.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document356.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document356.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document357.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document357.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document357.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document357.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document358.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document358.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document358.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document358.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document359.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document359.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document359.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document359.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document360.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document360.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document360.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document360.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document361.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document361.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document361.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document361.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document362.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document362.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document362.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document362.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document363.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document363.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document363.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document363.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document364.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document364.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document364.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document364.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document365.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document365.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document365.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document365.bin diff --git a/wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document366.bin b/search-models-test-resources/src/main/resources/pipe_documents/pipe_document366.bin similarity index 100% rename from wikisearch-model-test-resources/src/main/resources/pipe_documents/pipe_document366.bin rename to search-models-test-resources/src/main/resources/pipe_documents/pipe_document366.bin diff --git a/wikisearch-model-test-resources/src/test/java/com/krickert/search/model/test/util/TestDataHelperTest.java b/search-models-test-resources/src/test/java/com/krickert/search/model/test/util/TestDataHelperTest.java similarity index 100% rename from wikisearch-model-test-resources/src/test/java/com/krickert/search/model/test/util/TestDataHelperTest.java rename to search-models-test-resources/src/test/java/com/krickert/search/model/test/util/TestDataHelperTest.java diff --git a/wikisearch-model/pom.xml b/search-models/pom.xml similarity index 99% rename from wikisearch-model/pom.xml rename to search-models/pom.xml index a36d5fd..b3cf361 100644 --- a/wikisearch-model/pom.xml +++ b/search-models/pom.xml @@ -3,7 +3,7 @@ xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - wikisearch-model + search-models jar 1.0-SNAPSHOT diff --git a/wikisearch-model/src/main/java/com/krickert/search/model/constants/KafkaProtobufConstants.java b/search-models/src/main/java/com/krickert/search/model/constants/KafkaProtobufConstants.java similarity index 100% rename from wikisearch-model/src/main/java/com/krickert/search/model/constants/KafkaProtobufConstants.java rename to search-models/src/main/java/com/krickert/search/model/constants/KafkaProtobufConstants.java diff --git a/wikisearch-model/src/main/java/com/krickert/search/model/util/ProtobufUtils.java b/search-models/src/main/java/com/krickert/search/model/util/ProtobufUtils.java similarity index 100% rename from wikisearch-model/src/main/java/com/krickert/search/model/util/ProtobufUtils.java rename to search-models/src/main/java/com/krickert/search/model/util/ProtobufUtils.java diff --git a/search-models/src/main/proto/health_check.proto b/search-models/src/main/proto/health_check.proto new file mode 100644 index 0000000..8096131 --- /dev/null +++ b/search-models/src/main/proto/health_check.proto @@ -0,0 +1,19 @@ +syntax = "proto3"; + +option java_multiple_files = true; +option java_package = "com.krickert.search.service"; +option java_outer_classname = "HealthCheck"; +option objc_class_prefix = "HLW"; + +package com.krickert.search.health; + +// Message for health check request. + +message HealthCheckRequest {} + +// Message for health check reply. +message HealthCheckReply { + string status = 1; + float timerRunning = 2; + string serverName = 3; +} \ No newline at end of file diff --git a/search-models/src/main/proto/index_document.proto b/search-models/src/main/proto/index_document.proto new file mode 100644 index 0000000..239c010 --- /dev/null +++ b/search-models/src/main/proto/index_document.proto @@ -0,0 +1,15 @@ +syntax = "proto3"; +package com.krickert.search.model.document; +option java_multiple_files = true; +import "google/protobuf/timestamp.proto"; +import "google/protobuf/struct.proto"; + +message IndexDocument { + string id = 1; + string title = 2; + string body = 3; + repeated string keywords = 4; + google.protobuf.Timestamp creation_date = 5; + google.protobuf.Timestamp last_updated_date = 6; + google.protobuf.Struct custom_data = 7; +} \ No newline at end of file diff --git a/wikisearch-model/src/main/proto/indexer_configuration.proto b/search-models/src/main/proto/indexer_configuration.proto similarity index 100% rename from wikisearch-model/src/main/proto/indexer_configuration.proto rename to search-models/src/main/proto/indexer_configuration.proto diff --git a/wikisearch-model/src/main/proto/parser_service.proto b/search-models/src/main/proto/parser_service.proto similarity index 100% rename from wikisearch-model/src/main/proto/parser_service.proto rename to search-models/src/main/proto/parser_service.proto diff --git a/wikisearch-model/src/main/proto/pipeline_service.proto b/search-models/src/main/proto/pipeline_service.proto similarity index 100% rename from wikisearch-model/src/main/proto/pipeline_service.proto rename to search-models/src/main/proto/pipeline_service.proto diff --git a/wikisearch-model/src/main/proto/pipes.proto b/search-models/src/main/proto/pipes.proto similarity index 100% rename from wikisearch-model/src/main/proto/pipes.proto rename to search-models/src/main/proto/pipes.proto diff --git a/search-models/src/main/proto/search_api.proto b/search-models/src/main/proto/search_api.proto new file mode 100644 index 0000000..d8daad6 --- /dev/null +++ b/search-models/src/main/proto/search_api.proto @@ -0,0 +1,221 @@ +syntax = "proto3"; + +option java_outer_classname = "SearchApiProto"; +option java_multiple_files = true; + +package com.krickert.search.api; + +import "google/protobuf/timestamp.proto"; +import "google/protobuf/struct.proto"; + +// Enums for search strategy +enum SortType { + FIELD = 0; + SCORE = 1; +} + +enum SortOrder { + ASC = 0; + DESC = 1; +} + +enum LogicalOperator { + OR = 0; + AND = 1; +} + +enum StrategyType { + KEYWORD = 0; + SEMANTIC = 1; + // Add more strategy types as needed +} + +// Sort options for search results +message SortOptions { + SortType sortType = 1; + SortOrder sortOrder = 2; + optional string sortField = 3; // Field to sort on, required if sortType is FIELD +} + +// Filters for keyword-based or vector-based search +// these will add be added as static fq=field:value to the query itself +message Filter { + string field = 1; + string value = 2; +} + +// Similarity options used for vector-based searches +message SimilarityOptions { + optional float minReturn = 1; // Minimum similarity for return, defaults to 1 + optional float minTraverse = 2; // Minimum similarity to traverse neighbors, defaults to -infinity + repeated Filter preFilter = 3; // Pre-filter for candidate documents +} + +// Parameters for a semantic vector search +message SemanticOptions { + optional int32 topK = 1; // Maximum number of top results + SimilarityOptions similarity = 2; // Vector similarity configuration + repeated string includeTags = 3; // Tags to include + repeated string excludeTags = 4; // Tags to exclude + repeated string vectorFields = 5; // Names of vector fields to use +} + +// Parameters for keyword-based searches +message KeywordOptions { + optional string queryTextOverride = 1; // the query text if we do not want this text to be the initial query + optional LogicalOperator keywordLogicalOperator = 2; // set the default keyword match operator for each keywords "must include all + // words" would be AND while "math on any or all words" would be the OR part. + repeated string overrideFieldsToQuery = 3;// for this particular set of options, use this set of fields instead + // Additional boosting options can be added here +} + +// Encapsulates a single search strategy +message SearchStrategy { + StrategyType type = 1; // Type of the strategy (e.g., KEYWORD, SEMANTIC) + + oneof strategy_options { + SemanticOptions semantic = 2; + KeywordOptions keyword = 3; + // Add more options for new strategies here + } + // Optional boost factor for the strategy + optional float boost = 4; // Default boost is 1.0 if not specified +} + + +// Combined search strategies with logical operator +message SearchStrategyOptions { + LogicalOperator operator = 1; // How to combine multiple strategies (AND/OR) + repeated SearchStrategy strategies = 2; // List of search strategies +} + + +// Highlighting options +message HighlightOptions { + repeated string fields = 1; // Fields to apply highlighting (hl.fl) + optional string preTag = 2; // Tag to prepend to highlighted terms (e.g., ) + optional string postTag = 3; // Tag to append to highlighted terms (e.g., ) + optional int32 snippetCount = 4; // Number of snippets per field + optional int32 snippetSize = 5; // Size of each snippet in characters + optional bool semanticHighlight = 6; // Whether to apply semantic-specific highlighting + optional bool offsets = 7; // Return highlighting offsets in the document metadata + optional string queryOverride = 9; // Highlight query to use, would replace default +} + +// FieldList for inclusion and exclusion +message FieldList { + repeated string inclusionFields = 1; + repeated string exclusionFields = 2; +} + +// Unified FacetRequest using oneof +message FacetRequest { + oneof facet_type { + FacetField facetField = 1; + FacetRange facetRange = 2; + FacetQuery facetQuery = 3; + } +} + +// Facet configurations +message FacetField { + string field = 1; + optional int32 limit = 2; // Limit the number of facets returned + optional bool missing = 3; // Include counts for missing fields + optional string prefix = 4; // Limit to facets starting with a prefix +} + +message FacetRange { + string field = 1; + optional string start = 2; // Range start value + optional string end = 3; // Range end value + optional string gap = 4; // Gap for range segmentation + optional bool hardend = 5; // Force end of range to be the given end + optional string other = 6; // Additional counts: before, after, between +} + +message FacetQuery { + string query = 1; // Facet query string +} + +// Wrapper for multiple FacetResults +message FacetResults { + string facetField = 1; //the name of the facet field + repeated FacetResult results = 2; // List of facet results for a facet field +} + +// Additional parameters for search +message Param { + string field = 1; + string value = 2; +} + +message Params { + repeated Param param = 1; +} + +// Search request encompassing all search parameters +message SearchRequest { + string query = 1; // Search query string + optional int32 start = 2; // Start index for paging + optional int32 numResults = 3; // Number of results to return + repeated string filterQueries = 4; // Filter queries to refine search + optional SortOptions sort = 5; // Sorting options + repeated FacetRequest facetRequests = 6; // Unified facet requests + optional SearchStrategyOptions strategy = 9; // Updated search strategy options + optional SearchStrategyOptions boostQueries = 10; //boost queries for relevancy. uses the bq in edismax + optional Params additionalParams = 11; // Additional parameters to append to the search + optional HighlightOptions highlightOptions = 12; // Highlighting preferences + optional FieldList fieldList = 13; +} + +message Strings { + repeated string keyword = 1; +} + +message DocMetadata { + repeated int32 pageNumbers = 1; + optional string docType = 2; + optional string extension = 3; + optional google.protobuf.Timestamp lastUpdated = 4; + optional google.protobuf.Timestamp dateCreated = 5; + optional Strings keywords = 6; + optional Strings categories = 7; + optional string source = 8; +} + +// Individual search result +message SearchResult { + string id = 1; // Document ID + string snippet = 3; // A snippet of the document content with highlights + repeated string matchedText = 4; // Text matched by vectors or keyword + google.protobuf.Struct fields = 5; // Additional fields from the document + optional DocMetadata metadata = 6; // misc doc metadata +} + +// Facet result for returned facet data +message FacetResult { + string facet = 1; // Facet value + int64 facetCount = 2; // Count for the facet value +} + +// Response message for search results, including facets and metadata +message SearchResponse { + repeated SearchResult results = 1; // Search results + map facets = 2; // Facet information mapped to their results + int64 totalResults = 3; // Total number of results + int32 qTime = 4; // Time taken to perform the search in ms + google.protobuf.Timestamp timeOfSearch = 5; // Time of the search +} + +// Request for developer/test cases +message DevRequest { + map requestParams = 1; // Custom request params for testing + bool useBasicDefaults = 2; // Use defaults from configuration +} + +// The search service definition +service SearchService { + rpc Search(SearchRequest) returns (SearchResponse); + rpc DeveloperSearch(DevRequest) returns (SearchResponse); +} diff --git a/wikisearch-model/src/main/proto/semantic_doc.proto b/search-models/src/main/proto/semantic_doc.proto similarity index 100% rename from wikisearch-model/src/main/proto/semantic_doc.proto rename to search-models/src/main/proto/semantic_doc.proto diff --git a/wikisearch-model/src/main/proto/semantic_doc_service.proto b/search-models/src/main/proto/semantic_doc_service.proto similarity index 87% rename from wikisearch-model/src/main/proto/semantic_doc_service.proto rename to search-models/src/main/proto/semantic_doc_service.proto index 0da1688..b43f8da 100644 --- a/wikisearch-model/src/main/proto/semantic_doc_service.proto +++ b/search-models/src/main/proto/semantic_doc_service.proto @@ -2,6 +2,7 @@ syntax = "proto3"; import "pipes.proto"; import "semantic_doc.proto"; import "sentence_embeddings_models.proto"; +import "health_check.proto"; option java_multiple_files = true; option java_package = "com.krickert.search.service"; @@ -18,8 +19,33 @@ service EmbeddingService { // RPC to create embeddings vectors for multiple texts. rpc createEmbeddingsVectors(EmbeddingsVectorsRequest) returns (EmbeddingsVectorsReply); + + // RPC to check the health of the EmbeddingService. + rpc check (com.krickert.search.health.HealthCheckRequest) returns (com.krickert.search.health.HealthCheckReply); +} + +// Service to chunk a given text into smaller parts. +service ChunkService { + + // RPC to chunk a text based on specified options. + rpc chunk (ChunkRequest) returns (ChunkReply); + + // RPC to check the health of the ChunkService. + rpc check (com.krickert.search.health.HealthCheckRequest) returns (com.krickert.search.health.HealthCheckReply); +} + +// Service to handle semantic operations on documents. +service SemanticDocService { + + // RPC to embed a document with semantic information. + rpc embedDocument (SemanticRequest) returns (SemanticReply); + + // RPC to check the health of the SemanticDocService. + rpc check (com.krickert.search.health.HealthCheckRequest) returns (com.krickert.search.health.HealthCheckReply); } + + // Message representing a document embedding model. message DocumentEmbeddingModel { @@ -59,6 +85,7 @@ message EmbeddingsVectorsRequest { // A list of texts for which embeddings vectors are to be created. repeated string text = 1; + // The document embedding model to be used for creating the embeddings vector. // defaults to SentenceEmbeddingType.ALL_MINI_L12_V2 DocumentEmbeddingModel embedding_model = 2; @@ -98,20 +125,6 @@ message ChunkReply { repeated string chunks = 1; } -// Service to chunk a given text into smaller parts. -service ChunkService { - - // RPC to chunk a text based on specified options. - rpc chunk (ChunkRequest) returns (ChunkReply); -} - -// Service to handle semantic operations on documents. -service SemanticDocService { - - // RPC to embed a document with semantic information. - rpc embedDocument (SemanticRequest) returns (SemanticReply); -} - // Request message for embedding a document with semantic information. message SemanticRequest { diff --git a/search-models/src/main/proto/sentence_embeddings_model_service.proto b/search-models/src/main/proto/sentence_embeddings_model_service.proto new file mode 100644 index 0000000..529a7a4 --- /dev/null +++ b/search-models/src/main/proto/sentence_embeddings_model_service.proto @@ -0,0 +1,30 @@ +syntax = "proto3"; + +package com.krickert.search.vectorizer.model; + +option java_package = "com.krickert.search.vectorizer"; +option java_outer_classname = "SentenceEmbeddingModelProto"; + +import "sentence_embeddings_models.proto"; +import "google/protobuf/timestamp.proto"; +import "google/protobuf/empty.proto"; + +// Request message for model lookup by type. +message SentenceEmbeddingModelLookupRequest { + SentenceEmbeddingType model_type = 1; +} + +// Response message for model lookup. +message SentenceEmbeddingModelLookupReply { + SentenceEmbeddingModelDetails details = 1; + google.protobuf.Timestamp responseTime = 2; +} + +// Service definition for NLPModelService. +service SentenceEmbeddingModelService { + // RPC to lookup model details by type. + rpc LookupModel(SentenceEmbeddingModelLookupRequest) returns (SentenceEmbeddingModelLookupReply); + + // RPC to return all model details. + rpc ListAllModels(google.protobuf.Empty) returns (SentenceEmbeddingModels); +} \ No newline at end of file diff --git a/wikisearch-model/src/main/proto/sentence_embeddings_models.proto b/search-models/src/main/proto/sentence_embeddings_models.proto similarity index 95% rename from wikisearch-model/src/main/proto/sentence_embeddings_models.proto rename to search-models/src/main/proto/sentence_embeddings_models.proto index c94cc3e..bb09b50 100644 --- a/wikisearch-model/src/main/proto/sentence_embeddings_models.proto +++ b/search-models/src/main/proto/sentence_embeddings_models.proto @@ -4,6 +4,7 @@ package com.krickert.search.vectorizer.model; option java_package = "com.krickert.search.vectorizer"; option java_outer_classname = "SentenceEmbeddings"; +option java_multiple_files = true; // Enum containing all models. enum SentenceEmbeddingType { diff --git a/wikisearch-model/src/main/proto/solr_configuration.proto b/search-models/src/main/proto/solr_configuration.proto similarity index 84% rename from wikisearch-model/src/main/proto/solr_configuration.proto rename to search-models/src/main/proto/solr_configuration.proto index 1380640..7d0a870 100644 --- a/wikisearch-model/src/main/proto/solr_configuration.proto +++ b/search-models/src/main/proto/solr_configuration.proto @@ -31,6 +31,18 @@ message Authentication { // The subject for authentication. string subject = 7; + + // the user name for basic auth + string user_name = 8; + + // the password for basic auth + string password = 9; + + // some auth servers (like an okta dev account) require dpop proof in the http header + bool require_dpop = 10; + + // scope to request when contacting the oath server + string scope = 11; } // Message representing the connection configuration for Solr. @@ -47,6 +59,9 @@ message Connection { // The number of threads for Solr connection. int32 thread_count = 4; + + // the pagination size for solr source connections + optional int32 pagination_size = 5; } // Message representing the Solr collection creation configuration. @@ -82,6 +97,12 @@ message SolrConfig { // The connection configuration for Solr. Connection connection = 5; + + // the filters to be added + repeated string filters = 6; + + // the row number to start indexing from (in case of a previous failure) + int64 start = 7; } message SolrConfigurationMap { diff --git a/wikisearch-model/src/main/proto/vector_configuration.proto b/search-models/src/main/proto/vector_configuration.proto similarity index 96% rename from wikisearch-model/src/main/proto/vector_configuration.proto rename to search-models/src/main/proto/vector_configuration.proto index 3a571c1..b6023fc 100644 --- a/wikisearch-model/src/main/proto/vector_configuration.proto +++ b/search-models/src/main/proto/vector_configuration.proto @@ -49,7 +49,10 @@ message VectorConfig { optional HnswOptions hnsw_options = 7; // The vector collection creation configuration. - com.krickert.search.indexer.solr.SolrCollectionCreationConfig collection_creation = 9; + com.krickert.search.indexer.solr.SolrCollectionCreationConfig collection_creation = 8; + + // The maximum size of the chunk field + int32 max_chars = 9; } // Message representing the request to get a vector configuration by ID. diff --git a/wikisearch-model/src/main/proto/web_crawler.proto b/search-models/src/main/proto/web_crawler.proto similarity index 100% rename from wikisearch-model/src/main/proto/web_crawler.proto rename to search-models/src/main/proto/web_crawler.proto diff --git a/wikisearch-model/src/main/proto/wiki_article.proto b/search-models/src/main/proto/wiki_article.proto similarity index 100% rename from wikisearch-model/src/main/proto/wiki_article.proto rename to search-models/src/main/proto/wiki_article.proto diff --git a/wikisearch-model/src/test/java/com/krickert/search/model/util/ProtobufUtilsTest.java b/search-models/src/test/java/com/krickert/search/model/util/ProtobufUtilsTest.java similarity index 100% rename from wikisearch-model/src/test/java/com/krickert/search/model/util/ProtobufUtilsTest.java rename to search-models/src/test/java/com/krickert/search/model/util/ProtobufUtilsTest.java diff --git a/wikisearch-model/src/main/proto/sentence_embeddings_model_service.proto b/wikisearch-model/src/main/proto/sentence_embeddings_model_service.proto deleted file mode 100644 index d986e82..0000000 --- a/wikisearch-model/src/main/proto/sentence_embeddings_model_service.proto +++ /dev/null @@ -1,51 +0,0 @@ -syntax = "proto3"; - -package com.krickert.search.vectorizer.model; - -option java_package = "com.krickert.search.vectorizer"; -option java_outer_classname = "SentenceEmbeddingModelProto"; -option java_multiple_files = true; - -import "sentence_embeddings_models.proto"; -import "google/protobuf/timestamp.proto"; -import "google/protobuf/empty.proto"; - -// Request message for model lookup by type. -message SentenceEmbeddingModelLookupRequest { - - // Specifies the type of sentence embedding model to look up. - SentenceEmbeddingType model_type = 1; -} - -// Response message for model lookup. -message SentenceEmbeddingModelLookupReply { - - // Details of the sentence embedding model found. - SentenceEmbeddingModelDetails details = 1; - - // The timestamp when the response was generated. - google.protobuf.Timestamp responseTime = 2; -} - -// Service definition for NLPModelService, which provides operations related to sentence embedding models. -service SentenceEmbeddingModelService { - - // RPC to lookup model details based on the provided model type. - // - // The LookupModel method takes a SentenceEmbeddingModelLookupRequest containing - // the type of model to look up and returns a SentenceEmbeddingModelLookupReply - // with the details of the model. - // - // @param SentenceEmbeddingModelLookupRequest request - The request containing the type of model to look up. - // @return SentenceEmbeddingModelLookupReply - The response containing the details of the model and a response timestamp. - rpc LookupModel(SentenceEmbeddingModelLookupRequest) returns (SentenceEmbeddingModelLookupReply); - - // RPC to return the details of all available sentence embedding models. - // - // The ListAllModels method takes an empty request and returns a list of - // all available sentence embedding models along with their details. - // - // @param google.protobuf.Empty request - An empty request message. - // @return SentenceEmbeddingModels - The response containing the details of all available sentence embedding models. - rpc ListAllModels(google.protobuf.Empty) returns (SentenceEmbeddingModels); -} \ No newline at end of file