Hi I have an assembly (install.xml) with
<assembly xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.0.0.xsd" xmlns=" http://maven.apache.org/POM/4.0.0"> <formats> <format>zip</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <files> <file> <source>src/main/config/update-db2.bat</source> <filtered>true</filtered> <outputDirectory>.</outputDirectory> </file> This setup doesn´t work in a multimodule environment, the following error occurs: [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] File to filter not found: src\main\config\update-db2.bat (Das System kann den angegebenen Pfad nicht finden) Couldn't the ${baseDir} be added automatically? Thanx, Torsten
