-
Notifications
You must be signed in to change notification settings - Fork 0
/
assembly.xml
40 lines (37 loc) · 1.26 KB
/
assembly.xml
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
40
<?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 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>package</id>
<includeBaseDirectory>true</includeBaseDirectory>
<baseDirectory>teip5alea</baseDirectory>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>frameworks/teip5alea</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>**/*.xcf</exclude>
<exclude>**/mk-icons.sh</exclude>
<exclude>**/oxbytao_externalAuthorActions/*</exclude>
<exclude>**/oxbytei_externalAuthorActions/*</exclude>
<exclude>**/oxbytao_externalAuthorActions</exclude>
<exclude>**/oxbytei_externalAuthorActions</exclude>
</excludes>
</fileSet>
<fileSet>
<!-- include third party jar files -->
<directory>${project.build.directory}/lib</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>ant-contrib-1.0.3.jar</include>
</includes>
</fileSet>
</fileSets>
</assembly>