Skip to content

Commit

Permalink
devonfw#599:added windows-arm assembly file
Browse files Browse the repository at this point in the history
  • Loading branch information
fhamzaoui committed Oct 24, 2024
1 parent 3fcd8de commit c6cdb50
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions cli/src/main/assembly/release-windows-arm.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 https://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>windows-arm</id>
<formats>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory>./bin</outputDirectory>
<includes>
<include>${imageName}.exe</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.build.directory}/package</directory>
<outputDirectory>.</outputDirectory>
<excludes>
<exclude>system/mac/**</exclude>
<exclude>system/linux/**</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>

0 comments on commit c6cdb50

Please sign in to comment.