Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
vzwingma committed Apr 25, 2024
1 parent 7a359ad commit 0db99c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ void testDecode() {
assertNotNull(token.getPayload());
assertEquals("https://accounts.google.com", token.getPayload().getIss());
assertNotNull(token.issuedAt());
assertEquals("2023-01-02T12:46:42", token.issuedAt().toString());
assertEquals("2023-01-02T13:46:42", token.issuedAt().toString());
assertNotNull(token.expiredAt());
assertEquals("2023-01-02T13:46:42", token.expiredAt().toString());
assertEquals("2023-01-02T14:46:42", token.expiredAt().toString());

LOG.info(LocalDateTime.now().toString());
LOG.info(token.expiredAt().toString());
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,11 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
<artifactId>quarkus-rest-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client-reactive-jackson</artifactId>
<artifactId>quarkus-rest-client-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down

0 comments on commit 0db99c3

Please sign in to comment.