Mercurial > dive4elements > river
view artifacts/src/assembly/assembly.xml @ 9803:a440ebd5c23b 3.2.x tip
Avoid using outdated mod_wsgi in Docker setup
Run Wiki in standalone mode behind reverse proxy, which is provided by
a more up-to-date Apache web server. The wiki container is still based
on CentOS 7, because the included SSO integration component cannot be
build with more recent libraries.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Wed, 21 Aug 2024 16:54:17 +0200 |
parents | 308a0d822d18 |
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>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>/artifacts-data/artifactsdb</outputDirectory> </fileSet> <fileSet> <!-- Include prepared datacage-DB if existant --> <directory>${project.basedir}/datacagedb</directory> <outputDirectory>/artifacts-data/datacagedb</outputDirectory> </fileSet> <fileSet> <directory>${project.basedir}/../backend/doc/schema</directory> <outputDirectory>/schema</outputDirectory> </fileSet> <fileSet> <directory>${project.basedir}/../contrib/init.d</directory> <outputDirectory>/init.d</outputDirectory> </fileSet> </fileSets> <dependencySets> <dependencySet> <outputDirectory>bin/lib</outputDirectory> </dependencySet> </dependencySets> </assembly>