diff --git a/pom.xml b/pom.xml index 222d0bf6117..d066c53e01e 100644 --- a/pom.xml +++ b/pom.xml @@ -299,6 +299,11 @@ jboss-public-repository-group https://repository.jboss.org/nexus/content/groups/public-jboss/ + + + eclipse-staging + https://repo.eclipse.org/content/repositories/eclipse-staging/ + jboss-releases-repository @@ -334,7 +339,7 @@ is outdated and leads to compilation errors. --> 2.8.5 - 3.17.0 + 3.19.0.v20190826-1051 + + ${eclipse.repo.id} + ${eclipse.repo.url} + + true + never + + + false + + + diff --git a/util/internal/integrationtest/common/src/main/java/org/hibernate/search/util/impl/integrationtest/common/assertion/SearchHitsAssert.java b/util/internal/integrationtest/common/src/main/java/org/hibernate/search/util/impl/integrationtest/common/assertion/SearchHitsAssert.java index 80e7177d80d..e6ace6f2c4f 100644 --- a/util/internal/integrationtest/common/src/main/java/org/hibernate/search/util/impl/integrationtest/common/assertion/SearchHitsAssert.java +++ b/util/internal/integrationtest/common/src/main/java/org/hibernate/search/util/impl/integrationtest/common/assertion/SearchHitsAssert.java @@ -54,7 +54,7 @@ public ListAssert> asNormalizedLists() { shouldHaveOnlyElementsOfTypeOrNull( asIs(), List.class ); @SuppressWarnings( "unchecked" ) // We check that at runtime, that's what the assertion is for List> normalized = ( (List>) actual ).stream() - .map( NormalizationUtils::normalize ) + .map( NormalizationUtils::>normalize ) .collect( Collectors.toList() ); return Assertions.assertThat( normalized ).as( description ); }