blob: eff9812ddd05dbc299e6499a4136b26457ae97ee [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>
<parent>
<groupId>org.eclipse.osbp.releng.maven</groupId>
<artifactId>org.eclipse.osbp.releng.maven.parent.tycho</artifactId>
<version>0.9.0-SNAPSHOT</version>
<relativePath />
</parent>
<groupId>${{BASIC_SYMBOLIC_NAME}}</groupId>
<artifactId>${{BASIC_SYMBOLIC_NAME}}.aggregator</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<repositories>
<repository>
<name>Platform Repo</name>
<id>deltapack</id>
<layout>p2</layout>
<url>http://download.osbee.org/downloads/p2/org.eclipse.platform-4.6.3/</url>
</repository>
</repositories>
<properties>
<license.licenseName>LOETZGMBHUCOKG</license.licenseName>
<license.copyrightOwners>Loetz GmbH &amp; Co. KG</license.copyrightOwners>
<osbee.gitrepo.name>${{BASIC_SYMBOLIC_NAME}}</osbee.gitrepo.name>
</properties>
<modules>
<module>${{BASIC_SYMBOLIC_NAME}}.model.action</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.authorization</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.blip</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.chart</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.cube</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.datainterchange</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.datamart</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.datatype</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.dialog</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.dto</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.entity</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.entitymock</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.functionlibrary</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.menu</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.message</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.organization</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.perspective</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.report</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.table</module>
<module>${{BASIC_SYMBOLIC_NAME}}.model.topology</module>
<module>${{BASIC_SYMBOLIC_NAME}}.application</module>
<module>${{BASIC_SYMBOLIC_NAME}}.feature</module>
<module>${{BASIC_SYMBOLIC_NAME}}.product</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<target>
<artifact>
<groupId>org.eclipse.osbp.releng.maven</groupId>
<artifactId>org.eclipse.osbp.releng.maven.runtime.target</artifactId>
<version>0.9.0-SNAPSHOT</version>
</artifact>
</target>
<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>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86</arch>
</environment>
</environments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.2.0</version>
<executions>
<execution>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>xtend-gen</directory>
<includes>
<include>**</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.xtend</groupId>
<artifactId>xtend-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
<configuration>
<outputDirectory>xtend-gen</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>