"Fossies" - the Fresh Open Source Software Archive

Member "Signal-Server-11.29.0/service/assembly.xml" (8 Dec 2023, 926 Bytes) of package /linux/www/Signal-Server-11.29.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) XML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 <assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0"
    2           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3           xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
    4     <id>bin</id>
    5     <includeBaseDirectory>false</includeBaseDirectory>
    6     <formats>
    7         <format>tar.gz</format>
    8     </formats>
    9     <fileSets>
   10         <fileSet>
   11             <directory>${project.basedir}/config</directory>
   12             <outputDirectory>/config</outputDirectory>
   13             <includes>
   14                 <include>*</include>
   15             </includes>
   16         </fileSet>
   17         <fileSet>
   18             <directory>${project.build.directory}</directory>
   19             <outputDirectory>/</outputDirectory>
   20             <includes>
   21                 <include>${parent.artifactId}-${project.version}.jar</include>
   22             </includes>
   23         </fileSet>
   24     </fileSets>
   25 </assembly>