Skip to content

Commit

Permalink
#1582: update module-info to mark optional dependencies as 'static' (#…
Browse files Browse the repository at this point in the history
…1587)

* #1582: update module-info to mark optional dependencies as 'static'

* update to hibernate.core release 5.4.16.Final and use its module name

Co-authored-by: Brett Wooldridge <brett.wooldridge@gmail.com>
  • Loading branch information
prashantbhat and brettwooldridge committed Oct 15, 2020
1 parent 30c63c6 commit 8217f20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -13,7 +13,7 @@
<docker.maven.plugin.fabric8.version>0.33.0</docker.maven.plugin.fabric8.version>
<felix.bundle.plugin.version>5.1.1</felix.bundle.plugin.version>
<felix.version>6.0.1</felix.version>
<hibernate.version>5.2.10.Final</hibernate.version>
<hibernate.version>5.4.16.Final</hibernate.version>
<javassist.version>3.24.1-GA</javassist.version>
<jndi.version>0.11.4.1</jndi.version>
<maven.release.version>2.5.3</maven.release.version>
Expand Down Expand Up @@ -574,7 +574,7 @@
</activation>
<properties>
<automatic.module.name>com.zaxxer.hikari</automatic.module.name>
<slf4j.version>1.7.25</slf4j.version>
<slf4j.version>1.7.30</slf4j.version>
</properties>
<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java11/module-info.java
@@ -1,12 +1,12 @@
module com.zaxxer.hikari
{
requires static hibernate.core;
requires java.sql;
requires java.management;
requires java.naming;
requires org.slf4j;
requires static org.hibernate.orm.core;
requires static javassist;
requires static simpleclient;
requires org.slf4j;
requires static metrics.core;
requires static metrics.healthchecks;
requires static micrometer.core;
Expand Down

0 comments on commit 8217f20

Please sign in to comment.