2024-09-09 22:24:02 +02:00

59 lines
2.1 KiB
XML

<?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>
<artifactId>distribution</artifactId>
<name>project distribution</name>
<packaging>pom</packaging>
<description>Full report package including tool and utilities</description>
<properties>
<release.id>${project.parent.name}-${project.parent.version}</release.id>
</properties>
<parent>
<groupId>com.capgemini.reports</groupId>
<artifactId>kurt</artifactId>
<version>1.32.9</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>package-report</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<finalName>snecma-reports-${project.parent.version}</finalName>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>com.maestrodev</groupId>
<artifactId>collabnet-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>