2016-03-09 16:18:35 +01:00
|
|
|
<assembly
|
|
|
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
|
|
|
<id>servicearchive</id>
|
|
|
|
<formats>
|
|
|
|
<format>tar.gz</format>
|
|
|
|
</formats>
|
|
|
|
<baseDirectory>/</baseDirectory>
|
|
|
|
<fileSets>
|
|
|
|
<fileSet>
|
|
|
|
<outputDirectory>/</outputDirectory>
|
|
|
|
<useDefaultExcludes>true</useDefaultExcludes>
|
|
|
|
<includes>
|
2019-11-29 12:36:54 +01:00
|
|
|
<include>README.md</include>
|
|
|
|
<include>LICENSE.md</include>
|
2020-05-20 15:56:29 +02:00
|
|
|
<include>changelog.md</include>
|
2016-03-09 16:18:35 +01:00
|
|
|
<include>changelog.xml</include>
|
2016-03-16 17:00:06 +01:00
|
|
|
<include>profile.xml</include>
|
2016-03-09 16:18:35 +01:00
|
|
|
</includes>
|
|
|
|
<fileMode>755</fileMode>
|
|
|
|
<filtered>true</filtered>
|
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
|
|
|
<files>
|
|
|
|
<file>
|
2016-03-15 18:06:23 +01:00
|
|
|
<source>target/${build.finalName}.${project.packaging}</source>
|
|
|
|
<outputDirectory>/${artifactId}</outputDirectory>
|
2016-03-09 16:18:35 +01:00
|
|
|
</file>
|
2016-03-16 16:58:53 +01:00
|
|
|
|
2016-03-09 16:18:35 +01:00
|
|
|
</files>
|
|
|
|
</assembly>
|