view artifacts/src/assembly/assembly.xml @ 8716:b5ac17a10d22

(issue1754) Only create new Recommendations I belive that this was the original intent of this function otherwise why create a list of newRecommendations at all if we always recreate all Recommendations again. With the side effect that old recommendations had no master artifact the created artifacts of already existing artifacts did not have enough information to live and were not shown in the client so this problem was hidden.
author Andre Heinecke <andre.heinecke@intevation.de>
date Mon, 27 Apr 2015 11:45:31 +0200
parents e21f847569e7
children 93abc24a4972
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>bin</id>
  <includeBaseDirectory>false</includeBaseDirectory>
  <formats>
    <format>tar</format>
    <format>tar.bz2</format>
  </formats>
  <fileSets>
    <fileSet>
      <directory>${project.basedir}/bin</directory>
      <outputDirectory>/bin</outputDirectory>
    </fileSet>
    <fileSet>
      <directory>${project.basedir}/doc/conf</directory>
      <outputDirectory>/conf</outputDirectory>
    </fileSet>
    <fileSet>
      <!-- Include prepared artifact-DB if existant -->
      <directory>${project.basedir}/artifactsdb</directory>
      <outputDirectory>/artifactsdb</outputDirectory>
    </fileSet>
    <fileSet>
      <!-- Include prepared datacage-DB if existant -->
      <directory>${project.basedir}/datacagedb</directory>
      <outputDirectory>/datacagedb</outputDirectory>
    </fileSet>
    <fileSet>
      <directory>${project.basedir}/../backend/doc/schema</directory>
      <outputDirectory>/schema</outputDirectory>
    </fileSet>
  </fileSets>
  <dependencySets>
    <dependencySet>
      <outputDirectory>bin/lib</outputDirectory>
    </dependencySet>
  </dependencySets>
</assembly>

http://dive4elements.wald.intevation.org