Skip to content

Commit 93c0810

Browse files
committed
Merge branch 'hotfix/2.1.1'
2 parents aacd531 + e5cd310 commit 93c0810

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

pom.xml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.cryptomator</groupId>
44
<artifactId>cryptolib</artifactId>
5-
<version>2.1.0</version>
5+
<version>2.1.1</version>
66
<name>Cryptomator Crypto Library</name>
77
<description>This library contains all cryptographic functions that are used by Cryptomator.</description>
88
<url>https://github.com/cryptomator/cryptolib</url>
@@ -210,6 +210,29 @@
210210
</execution>
211211
</executions>
212212
</plugin>
213+
<plugin>
214+
<groupId>org.codehaus.mojo</groupId>
215+
<artifactId>exec-maven-plugin</artifactId>
216+
<version>3.1.0</version>
217+
<executions>
218+
<execution>
219+
<phase>package</phase>
220+
<goals>
221+
<goal>exec</goal>
222+
</goals>
223+
<configuration>
224+
<executable>jar</executable>
225+
<workingDirectory>${project.build.outputDirectory}</workingDirectory>
226+
<arguments>
227+
<argument>--verbose</argument>
228+
<argument>--update</argument>
229+
<argument>--file=${project.build.directory}/${project.build.finalName}.jar</argument>
230+
<argument>META-INF/versions/9/module-info.class</argument>
231+
</arguments>
232+
</configuration>
233+
</execution>
234+
</executions>
235+
</plugin>
213236
<plugin>
214237
<groupId>org.apache.maven.plugins</groupId>
215238
<artifactId>maven-surefire-plugin</artifactId>

0 commit comments

Comments
 (0)