-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwindows-assembly.xml
More file actions
39 lines (39 loc) · 1.33 KB
/
windows-assembly.xml
File metadata and controls
39 lines (39 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
<id>windows-${project.arch}</id>
<formats>
<format>zip</format>
</formats>
<baseDirectory>spin-tools</baseDirectory>
<dependencySets>
<dependencySet>
<outputDirectory>lib</outputDirectory>
</dependencySet>
</dependencySets>
<files>
<file><source>launcher/spinc.exe</source></file>
<file><source>launcher/spinide.exe</source></file>
<file><source>LICENSE</source></file>
</files>
<fileSets>
<fileSet>
<directory>examples</directory>
<excludes>
<exclude>**/*.binary</exclude>
</excludes>
<outputDirectory>examples</outputDirectory>
</fileSet>
<fileSet>
<directory>library</directory>
<excludes>
<exclude>**/*.binary</exclude>
</excludes>
<outputDirectory>library</outputDirectory>
</fileSet>
<fileSet>
<directory>runtime/target/maven-jlink/default</directory>
<outputDirectory>java</outputDirectory>
</fileSet>
</fileSets>
</assembly>