Skip to content

Commit

Permalink
Bump commons-certvalidator and dnsjava version
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-kumar committed May 19, 2024
1 parent 98e2aa8 commit f0a40fd
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 @@ -120,8 +120,8 @@ public <T> T initiate(Class<T> cls, Map<String, Object> objectStorage) throws Pe
// No action
}

return cls.newInstance();
} catch (InstantiationException | IllegalAccessException | InvocationTargetException e) {
return cls.getDeclaredConstructor().newInstance();
} catch (InstantiationException | IllegalAccessException | NoSuchMethodException | InvocationTargetException e) {
throw new PeppolLoadingException(String.format("Unable to initiate '%s'", cls), e);
}
}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@
<lombok.version>1.18.24</lombok.version>
<metainf-services.version>1.9</metainf-services.version>
<vefa-peppol.version>3.5.1-SNAPSHOT</vefa-peppol.version>
<commons-certvalidator.version>4.0.0</commons-certvalidator.version>
<commons-certvalidator.version>4.1.0</commons-certvalidator.version>
<peppol-lib.version>2.2.0</peppol-lib.version>
<httpclient.version>4.5.13</httpclient.version>
<dnsjava.version>3.5.2</dnsjava.version>
<dnsjava.version>3.5.3</dnsjava.version>
<guava.version>32.0.1-jre</guava.version>
<typesafe-config.version>1.4.2</typesafe-config.version>
<javax-mail.version>1.4.7</javax-mail.version>
Expand Down

0 comments on commit f0a40fd

Please sign in to comment.