tom@8675: <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
tom@8675:           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
tom@8675:           xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
tom@8675:   <id>flys-importer</id>
tom@8675:   <includeBaseDirectory>false</includeBaseDirectory>
tom@8675:   <formats>
tom@8675:      <format>tar</format>
tom@8675:   </formats>
tom@8675:   <fileSets>
tom@8675:     <fileSet>
tom@8675:       <directory>${project.build.directory}</directory>
tom@8675:       <outputDirectory>/flys-importer/bin</outputDirectory>
tom@8675:       <includes>
tom@8675:         <include>*.jar</include>
tom@8675:       </includes>
tom@8675:     </fileSet>
tom@8675:     <fileSet>
tom@8675:       <directory>${project.basedir}/contrib</directory>
tom@8675:       <outputDirectory>/flys-importer</outputDirectory>
tom@8675:       <excludes>
tom@8675:         <exclude>shpimporter/*.pyc</exclude>
tom@8675:       </excludes>
tom@8675:     </fileSet>
tom@8675:     <fileSet>
tom@8675:       <directory>${project.basedir}/doc/conf</directory>
tom@8675:       <outputDirectory>/flys-importer/conf</outputDirectory>
tom@8675:     </fileSet>
tom@8675:     <fileSet>
tom@8675:       <directory>${project.basedir}/doc/schema</directory>
tom@8675:       <outputDirectory>/flys-importer/doc/schema</outputDirectory>
tom@8675:       <includes>
tom@8675:         <include>*.sql</include>
tom@8675:       </includes>
tom@8675:     </fileSet>
gernotbelger@9042: 
gernotbelger@9042:     <!-- Include PDF-manual if existant -->
gernotbelger@9042:     <fileSet>
gernotbelger@9042:       <directory>${project.basedir}/doc/documentation/de</directory>
gernotbelger@9042:       <outputDirectory>/flys-importer/doc/</outputDirectory>
gernotbelger@9042:       <includes>
gernotbelger@9042:         <include>*.pdf</include>
gernotbelger@9042:       </includes>
gernotbelger@9042:     </fileSet>
tom@8675:   </fileSets>
gernotbelger@9042: 
gernotbelger@9042:   <!-- Include PDF-manual if existant -->
gernotbelger@9042:   <!-- 
tom@8675:   <files>
tom@8675:     <file>
tom@8675:       <source>
tom@8675:         ${project.basedir}/doc/documentation/de/importer-manual.pdf
tom@8675:       </source>
tom@8675:       <outputDirectory>/flys-importer/doc/</outputDirectory>
tom@8675:     </file>
tom@8675:   </files>
gernotbelger@9042:    -->
tom@8675: </assembly>