Skip to content

Commit

Permalink
extracted unzip into own execution step
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-fhe committed Oct 20, 2023
1 parent dc8d358 commit 0126fa2
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions threema-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,28 @@
<target>
<get src="https://gateway.threema.ch/sdk/threema-msgapi-sdk-java-2.0.1.zip"
dest="${project.basedir}/lib/threema-msgapi-tool.zip"/>
<!--
<unzip src="${project.basedir}/lib/threema-msgapi-tool.zip"
dest="${project.basedir}/lib"
overwrite="false">
<patternset includes="threema-msgapi-tool.jar"/>
</unzip>
-->

</target>
</configuration>
</execution>
<execution>
<id>extract-threema-msgapi-tool</id>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<unzip src="${project.basedir}/lib/threema-msgapi-tool.zip"
dest="${project.basedir}/lib"
overwrite="false">
<patternset includes="threema-msgapi-tool.jar"/>
</unzip>
</target>
</configuration>
</execution>
Expand Down

0 comments on commit 0126fa2

Please sign in to comment.