aboutsummaryrefslogtreecommitdiffstats
path: root/asdctool/tarball.xml
blob: 62deb75e10b6e323663df38d7cd52d1dc5d08998 (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
<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>bin</id>
  <formats>
    <format>tar</format>
  </formats>
  <files>
    <file>
        <source>${project.build.directory}/${project.artifactId}-${project.version}-jar-with-dependencies.jar</source>
        <outputDirectory>./</outputDirectory>
        <destName>${project.artifactId}-${project.version}-jar-with-dependencies.jar</destName>
    </file>
  </files>
  
  <fileSets>  
	<fileSet>
		<directory>src/main/resources/scripts</directory>
        <outputDirectory>scripts</outputDirectory>
	</fileSet>
	<fileSet>
		<directory>src/main/resources/config</directory>
        <outputDirectory>config</outputDirectory>
	</fileSet>
  </fileSets>
</assembly>