<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.hftstuttgart</groupId> <artifactId>energycomponents.parent</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>Energy Components Catalog Parent</name> <description>Maven parent and aggregator project for Energy Components Catalog Model and Editor</description> <properties> <tycho-version>2.2.0</tycho-version> </properties> <build> <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-maven-plugin</artifactId> <version>${tycho-version}</version> <configuration> <source>15</source> <target>15</target> <encoding>UTF-8</encoding> </configuration> <extensions>true</extensions> </plugin> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>target-platform-configuration</artifactId> <version>${tycho-version}</version> <configuration> <executionEnvironment>JavaSE-15</executionEnvironment> <target> <artifact> <groupId>de.hftstuttgart</groupId> <artifactId>de.hftstuttgart.energycomponents.target</artifactId> <version>1.0.0</version> </artifact> </target> <resolveWithExecutionEnvironmentConstraints>false</resolveWithExecutionEnvironmentConstraints> <environments> <!-- environment> <os>linux</os> <ws>gtk</ws> <arch>x86</arch> </environment --> <environment> <os>linux</os> <ws>gtk</ws> <arch>x86_64</arch> </environment> <environment> <os>win32</os> <ws>win32</ws> <arch>x86_64</arch> </environment> <environment> <os>macosx</os> <ws>cocoa</ws> <arch>x86_64</arch> </environment> </environments> </configuration> </plugin> </plugins> </build> <modules> <module>../de.hftstuttgart.energycomponents.model</module> <module>../de.hftstuttgart.energycomponents.edit</module> <module>../de.hftstuttgart.energycomponents.viewmodel</module> <module>../de.hftstuttgart.energycomponents.application</module> <module>../de.hftstuttgart.energycomponents.feature</module> <module>../de.hftstuttgart.energycomponents.product</module> <module>../de.hftstuttgart.energycomponents.target</module> </modules> </project>