-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathassembly.xml
23 lines (22 loc) · 1.03 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
<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>assembly</id>
<formats>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.build.directory}/</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>${project.artifactId}-firefox-${project.version}.xpi</include>
<include>${project.artifactId}-chrome-${project.version}.zip</include>
<include>${project.artifactId}-opera-${project.version}.zip</include>
<include>${project.artifactId}-safari-${project.version}.zip</include>
<include>license.txt</include>
</includes>
</fileSet>
</fileSets>
</assembly>