blob: 23d10cfb7bee6d146046c304bb2cd8ecd99cc7ce [file] [log] [blame]
<?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>${groupId}</groupId>
<artifactId>${groupId}.${artifactId}.parent</artifactId>
<version>${version}-SNAPSHOT</version>
</parent>
<artifactId>${groupId}.${artifactId}.releng</artifactId>
<packaging>pom</packaging>
<name>${componentName} Releng</name>
<description>This plug-in contains the different modules relatives to the releng of ${componentName} from update site, to feature , product and rcp.</description>
<modules>
<module>${groupId}.${artifactId}.feature</module>
</modules>
<profiles>
<profile>
<id>product</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>${groupId}.${artifactId}.p2</module>
<module>${groupId}.${artifactId}.rcp</module>
<module>${groupId}.${artifactId}.rcp.feature</module>
<module>${groupId}.${artifactId}.product</module>
</modules>
</profile>
</profiles>
</project>