Skip to content

Commit

Permalink
XIVY-12667 Combined 3 execution steps into 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-fhe committed Oct 26, 2023
1 parent 577760b commit 548273c
Showing 1 changed file with 3 additions and 25 deletions.
28 changes: 3 additions & 25 deletions threema-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,38 +32,16 @@
<target>
<mkdir dir="${project.basedir}/lib"/>
<get src="https://gateway.threema.ch/sdk/threema-msgapi-sdk-java-2.0.1.zip"
dest="${project.basedir}/lib/threema-msgapi-tool.zip"/>
</target>
</configuration>
</execution>
<execution>
<id>extract-threema-msgapi-tool</id>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
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>
</unzip>
<delete file="${project.basedir}/lib/threema-msgapi-tool.zip"/>
</target>
</configuration>
</execution>
<execution>
<id>delete-threema-msgapi-tool-archive</id>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<delete file="${project.basedir}/lib/threema-msgapi-tool.zip"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down

0 comments on commit 548273c

Please sign in to comment.