Added automatic module name for JPMS compatibility

This commit is contained in:
Stefan Kalscheuer 2018-03-15 19:54:18 +01:00
parent 27e7a2dffc
commit 88d49bc9f7
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,8 @@
## 0.7.1 [unreleased]
* [improvement] Added automatic module name for JPMS compatibility
* [improvement] Minor dependency updates
* [test] Tested against Vault 0.9.5
## 0.7.0 [2017-10-03] ## 0.7.0 [2017-10-03]
* [feature] Retrieval of health status via `getHealth()` (#15) * [feature] Retrieval of health status via `getHealth()` (#15)
* [improvement] `seal()`, `unseal()` are now `void` and throw Exception on error (#12) * [improvement] `seal()`, `unseal()` are now `void` and throw Exception on error (#12)

View File

@ -4,7 +4,7 @@
<groupId>de.stklcode.jvault</groupId> <groupId>de.stklcode.jvault</groupId>
<artifactId>connector</artifactId> <artifactId>connector</artifactId>
<version>0.7.0</version> <version>0.7.1-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
@ -52,6 +52,13 @@
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version> <version>3.0.2</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>de.stklcode.jvault.connector</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>