summaryrefslogtreecommitdiffstats
path: root/src/main/assembly/descriptor.xml
blob: e3a83edb9da5e646b0180ec39aca48e50a7238e8 (plain)
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
<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>build</id>
  <includeBaseDirectory>false</includeBaseDirectory>
  <formats>
    <format>dir</format>
  </formats>
  <fileSets>
    <fileSet>
      <directory>${project.basedir}/bundleconfig-local</directory>
      <outputDirectory>/bundleconfig</outputDirectory>
      <includes>
	<include>**/*</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>${project.basedir}/src/main/bin</directory>
      <outputDirectory>/bin</outputDirectory>
      <includes>
	<include>**/*</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>${project.build.directory}</directory>
      <outputDirectory>/</outputDirectory>
      <includes>
	<include>*.jar</include>
      </includes>
      <excludes>
	<exclude>Dockerfile</exclude>
	<exclude>*.sh</exclude>
      </excludes>
    </fileSet>
  </fileSets>
</assembly>