Mercurial > dive4elements > river
view etl/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 | de83690667fe |
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> <formats> <format>tar</format> <format>tar.gz</format> </formats> <fileSets> <fileSet> <directory>${project.basedir}/bin</directory> <outputDirectory>bin</outputDirectory> </fileSet> <fileSet> <directory>${project.basedir}/doc</directory> <outputDirectory>doc</outputDirectory> </fileSet> </fileSets> <dependencySets> <dependencySet> <outputDirectory>bin/lib</outputDirectory> </dependencySet> </dependencySets> </assembly>