blob: 1eda604c9e7e09d77f7c4a32d10f36e03211cb06 [file]
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.tigerstripe</groupId>
<artifactId>org.eclipse.tigerstripe.parent</artifactId>
<version>0.9.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>releng</artifactId>
<packaging>pom</packaging>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>org.eclipse.tigerstripe.update-site</module>
<module>org.eclipse.tigerstripe.rcp</module>
</modules>
</profile>
<profile>
<id>skipRCP</id>
<activation>
<property>
<name>!skipRCP</name>
</property>
</activation>
<modules>
<module>org.eclipse.tigerstripe.update-site</module>
</modules>
</profile>
</profiles>
</project>