Skip to content
Snippets Groups Projects
pom.xml 1.32 KiB
Newer Older
vitam-prg's avatar
vitam-prg committed
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>fr.gouv.vitamui</groupId>
        <artifactId>parent</artifactId>
vitam-prg's avatar
vitam-prg committed
    </parent>

    <artifactId>deployment</artifactId>
    <name>VITAMUI Deployment - Stub</name>
vitam-prg's avatar
vitam-prg committed
    <packaging>pom</packaging>
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>${maven.assembly.version}</version>
                <configuration>
                    <descriptors>
                        <descriptor>../packaging/assembly-deployment.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

vitam-prg's avatar
vitam-prg committed
</project>