Re-added "Implementation-Version" to the jars' manifest to determine Cryptomator version at runtime

This commit is contained in:
Sebastian Stenzel
2019-02-28 23:45:10 +01:00
parent 336d67195d
commit 0b8f8e53af

View File

@@ -292,6 +292,18 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<!-- adds Implementation-Version which can be read during runtime -->
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>