view backend/src/assembly/assembly.xml @ 9661:9b8ba3b83a15

Importer (s/u-info) vegetation zones: new database column in vegetation_type table for german type name, localized vegetation type names by querying the database instead of translating by resource property, detecting and cancelling the import of a second vegetation zone file for a river, detecting, logging, cancelling in case of wrong column titles, detecting, logging and ignoring lines with missing (color) values, comparing vegetation zone name and class with the database and logging+ignoring in case of inconsistencies, starting the most elevated zone with 0 instead of -1 overflow days
author mschaefer
date Mon, 23 Mar 2020 16:38:12 +0100
parents 0d0c8fd1b8c8
children
line wrap: on
line source
<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>flys-importer</id>
  <includeBaseDirectory>false</includeBaseDirectory>
  <formats>
     <format>tar</format>
  </formats>
  <fileSets>
    <fileSet>
      <directory>${project.build.directory}</directory>
      <outputDirectory>/flys-importer/bin</outputDirectory>
      <includes>
        <include>*.jar</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>${project.basedir}/contrib</directory>
      <outputDirectory>/flys-importer/original</outputDirectory>
      <excludes>
        <exclude>shpimporter/*.pyc</exclude>
      </excludes>
    </fileSet>
    <fileSet>
      <directory>${project.basedir}/doc/conf</directory>
      <outputDirectory>/flys-importer/conf</outputDirectory>
    </fileSet>
    <fileSet>
      <directory>${project.basedir}/doc/schema</directory>
      <outputDirectory>/flys-importer/doc/schema</outputDirectory>
      <includes>
        <include>*.sql</include>
      </includes>
    </fileSet>

    <!-- Include PDF-manual if existant -->
    <fileSet>
      <directory>${project.basedir}/doc/documentation/de</directory>
      <outputDirectory>/flys-importer/doc/</outputDirectory>
      <includes>
        <include>*.pdf</include>
      </includes>
    </fileSet>
  </fileSets>

  <!-- Include PDF-manual if existant -->
  <!-- 
  <files>
    <file>
      <source>
        ${project.basedir}/doc/documentation/de/importer-manual.pdf
      </source>
      <outputDirectory>/flys-importer/doc/</outputDirectory>
    </file>
  </files>
   -->
</assembly>

http://dive4elements.wald.intevation.org