blob: 86da753dbdbc9641a5ca515467703aaf5d70947f [file] [log] [blame]
<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>
<groupId>org.eclipse.ease</groupId>
<artifactId>org.eclipse.ease.releng</artifactId>
<version>0.9.0-SNAPSHOT</version>
<packaging>pom</packaging>
<prerequisites>
<!-- Maven 3.1.0 is the earliest version using Eclipse Aether, Maven 3.0.x
uses the incompatible predecessor Sonatype Aether -->
<maven>3.6.3</maven>
</prerequisites>
<properties>
<!-- used plugin versions -->
<tycho.version>2.4.0</tycho.version>
<tycho.extras.version>${tycho.version}</tycho.extras.version>
</properties>
<build>
<plugins>
<!-- enable tycho build extension -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho.version}</version>
<extensions>true</extensions>
</plugin>
<!-- set target platform for build -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho.version}</version>
<configuration>
<target>
<artifact>
<groupId>org.eclipse.ease</groupId>
<artifactId>org.eclipse.ease.releng.target</artifactId>
<version>0.9.0-SNAPSHOT</version>
</artifact>
</target>
<environments>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>../org.eclipse.ease.releng.target</module>
<module>../../tests/org.eclipse.ease.test</module>
<module>../../tests/org.eclipse.ease.classloader.test</module>
<module>../../tests/org.eclipse.ease.lang.javascript.rhino.test</module>
<module>../../tests/org.eclipse.ease.lang.javascript.test</module>
<module>../../tests/org.eclipse.ease.lang.python.test</module>
<module>../../tests/org.eclipse.ease.lang.python.jython.test</module>
<!-- Disabled, see Bug 567308 - [Py4J] Tests are broken as they cause build
timeouts <module>../../tests/org.eclipse.ease.lang.python.py4j.test</module> -->
<module>../../tests/org.eclipse.ease.lang.scriptarchive.test</module>
<module>../../tests/org.eclipse.ease.ui.test</module>
</modules>
</project>