mirror of
https://github.com/Alfresco/SearchServices.git
synced 2026-09-16 18:12:56 +00:00
Merge branch 'master' into 'dependabot/maven/search-services/org.alfresco-alfresco-data-model-8.50'
# Conflicts: # search-services/alfresco-solrclient-lib/pom.xml
This commit is contained in:
+1
-1
@@ -20,7 +20,7 @@ public class ExplicitRoutingTest extends AbstractE2EFunctionalTest {
|
||||
* Checks indexing still works after sharding model used for explicit routing has been disabled
|
||||
* @throws Exception
|
||||
*/
|
||||
@Test(priority = 1, groups = {TestGroup.NOT_BAMBOO, TestGroup.EXPLICIT_SHARDING })
|
||||
@Test(priority = 1, groups = {TestGroup.NOT_BAMBOO, TestGroup.EXPLICIT_SHARDING, TestGroup.ACS_62n})
|
||||
public void testIndexingStillWorkingAfterShardModelIsDeactivated() throws Exception
|
||||
{
|
||||
|
||||
|
||||
+4
-3
@@ -109,9 +109,10 @@ public class SearchHighLightTest extends AbstractSearchServicesE2ETest
|
||||
nodes.getEntries().stream()
|
||||
.map(SearchNodeModel::getModel)
|
||||
.map(SearchNodeModel::getSearch)
|
||||
.map(SearchScoreModel::getHighlight).forEach(( hl ->
|
||||
assertEquals(expectedHighlight, hl.get(0).getSnippets().get(0))
|
||||
)
|
||||
.map(SearchScoreModel::getHighlight).forEach(( hl -> {
|
||||
assertEquals(1, hl.size());
|
||||
assertEquals(expectedHighlight, hl.get(0).getSnippets().get(0));
|
||||
})
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
<properties>
|
||||
<dependency.alfresco-data-model.version>8.50</dependency.alfresco-data-model.version>
|
||||
<dependency.jackson.version>2.10.0.pr2</dependency.jackson.version>
|
||||
<dependency.jackson.version>2.10.0.pr3</dependency.jackson.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -54,9 +54,9 @@ mybatis-spring-1.2.5.jar http://www.mybatis.org/
|
||||
chemistry-opencmis-server-support-1.0.0.jar http://chemistry.apache.org/
|
||||
chemistry-opencmis-server-bindings-1.0.0.jar http://chemistry.apache.org/
|
||||
quartz-2.3.1.jar http://quartz-scheduler.org/
|
||||
jackson-core-2.10.0.pr2.jar https://github.com/FasterXML/jackson
|
||||
jackson-annotations-2.10.0.pr2.jar https://github.com/FasterXML/jackson
|
||||
jackson-databind-2.10.0.pr2.jar https://github.com/FasterXML/jackson
|
||||
jackson-core-2.10.0.pr3.jar https://github.com/FasterXML/jackson
|
||||
jackson-annotations-2.10.0.pr3.jar https://github.com/FasterXML/jackson
|
||||
jackson-databind-2.10.0.pr3.jar https://github.com/FasterXML/jackson
|
||||
commons-httpclient-3.1-HTTPCLIENT-1265.jar http://jakarta.apache.org/commons/
|
||||
spring-aop-5.1.8.RELEASE.jar http://projects.spring.io/spring-framework/
|
||||
spring-beans-5.1.8.RELEASE.jar http://projects.spring.io/spring-framework/
|
||||
|
||||
Reference in New Issue
Block a user