Skip to content

Commit

Permalink
ITD-91336: Upgrade reflections
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobby committed Aug 12, 2022
1 parent 58dc399 commit b072bb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>
<groupId>com.mercateo.rest</groupId>
<artifactId>rest-hateoas-client</artifactId>
<version>0.5.2-SNAPSHOT</version>
<version>0.5.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>rest-hateoas-client</name>
<description>Client for dynamic discovery of REST-APIs which are developed with the help of common.rest.schemagen</description>
Expand Down Expand Up @@ -110,7 +110,7 @@
<dependency>
<artifactId>reflections</artifactId>
<groupId>org.reflections</groupId>
<version>0.9.10</version>
<version>0.10.2</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.connectors</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public void testCallWithRelAndTemplate_to_many_parameter_for_template() throws E
Assert.fail("No IllegalStateException thrown");
} catch (IllegalStateException e) {
assertEquals(
"There is more than one field for the template variable id: [java.lang.String com.mercateo.rest.hateoas.client.impl.OngoingResponseImpl0Test$StringIdBean.id, java.lang.String com.mercateo.rest.hateoas.client.impl.OngoingResponseImpl0Test$StringIdBean2.id]",
"There is more than one field for the template variable id: [java.lang.String com.mercateo.rest.hateoas.client.impl.OngoingResponseImpl0Test$StringIdBean2.id, java.lang.String com.mercateo.rest.hateoas.client.impl.OngoingResponseImpl0Test$StringIdBean.id]",
e.getMessage());
}
}
Expand Down

0 comments on commit b072bb5

Please sign in to comment.