blob: f985ee09e22e9239f2196edba183eac1eb04f4ee [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>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<groupId>org.eclipse.bpmn2</groupId>
<artifactId>bpmn2-parent</artifactId>
<version>1.5.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>BPMN 2.0 Metamodel</name>
<description>Parent POM for the BPMN2 Metamodel Project</description>
<issueManagement>
<url>https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;component=BPMN2;product=MDT</url>
<system>Bugzilla</system>
</issueManagement>
<licenses>
<license>
<name>Eclipse Public License 2.0</name>
<comments>
All rights reserved.
This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.htm
</comments>
</license>
</licenses>
<properties>
<tycho-version>1.7.0</tycho-version>
<tycho-extras-version>${tycho-version}</tycho-extras-version>
<BUILD_ALIAS>Final</BUILD_ALIAS>
</properties>
<profiles>
<profile>
<id>platform-helios</id>
<activation>
<property>
<name>platform-version-name</name>
<value>helios</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/helios</eclipse-site>
<platform-version>[3.6,3.7)</platform-version>
<platform-version-name>helios</platform-version-name>
</properties>
</profile>
<profile>
<id>platform-indigo</id>
<activation>
<property>
<name>platform-version-name</name>
<value>indigo</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/indigo</eclipse-site>
<platform-version>[3.7,3.8)</platform-version>
<platform-version-name>indigo</platform-version-name>
</properties>
</profile>
<profile>
<id>platform-juno</id>
<activation>
<property>
<name>platform-version-name</name>
<value>juno</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/juno</eclipse-site>
<platform-version>[4.2,4.3)</platform-version>
<platform-version-name>juno</platform-version-name>
</properties>
</profile>
<profile>
<id>platform-kepler</id>
<activation>
<property>
<name>platform-version-name</name>
<value>kepler</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/kepler</eclipse-site>
<platform-version>[4.3,4.4)</platform-version>
<platform-version-name>kepler</platform-version-name>
</properties>
</profile>
<profile>
<id>platform-luna</id>
<activation>
<property>
<name>platform-version-name</name>
<value>luna</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/luna</eclipse-site>
<platform-version>[4.4,4.5)</platform-version>
<platform-version-name>luna</platform-version-name>
</properties>
</profile>
<profile>
<id>platform-mars</id>
<activation>
<property>
<name>platform-version-name</name>
<value>mars</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/mars</eclipse-site>
<platform-version>[4.4,5.0]</platform-version>
<platform-version-name>mars</platform-version-name>
</properties>
</profile>
<profile>
<id>platform-neon</id>
<activation>
<property>
<name>platform-version-name</name>
<value>neon</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/neon</eclipse-site>
<platform-version>[4.6,5.0]</platform-version>
<platform-version-name>neon</platform-version-name>
</properties>
</profile>
<profile>
<id>platform-oxygen</id>
<activation>
<property>
<name>platform-version-name</name>
<value>oxygen</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/oxygen</eclipse-site>
<platform-version>[4.7,5.0]</platform-version>
<platform-version-name>oxygen</platform-version-name>
</properties>
</profile>
<profile>
<id>platform-photon</id>
<activation>
<property>
<name>platform-version-name</name>
<value>photon</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/photon</eclipse-site>
<platform-version>[4.8,5.0]</platform-version>
<platform-version-name>photon</platform-version-name>
</properties>
</profile>
<!-- 2020-06 -->
<profile>
<id>platform-2020-06</id>
<activation>
<property>
<name>platform-version-name</name>
<value>2020-06</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/2020-06</eclipse-site>
<platform-version>[4.8,5.2)</platform-version>
<platform-version-name>2020-06</platform-version-name>
<eclipse.orbit.url>https://download.eclipse.org/tools/orbit/S-builds/S20200526004052/repository</eclipse.orbit.url>
</properties>
</profile>
<!-- 2020-09 -->
<profile>
<id>platform-2020-09</id>
<activation>
<property>
<name>platform-version-name</name>
<value>2020-09</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/2020-09</eclipse-site>
<platform-version>[4.8,5.2)</platform-version>
<platform-version-name>2020-09</platform-version-name>
<eclipse.orbit.url>https://download.eclipse.org/tools/orbit/S-builds/S20200727174946/repository</eclipse.orbit.url>
<!-- S20200727174946 I20200807105332 -->
</properties>
<!--
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<useUIThread>false</useUIThread>
</configuration>
</plugin>
</plugins>
</build>
-->
</profile>
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-pack200a-plugin</artifactId>
<version>${tycho-extras-version}</version>
<executions>
<execution>
<id>pack200-normalize</id>
<goals>
<goal>normalize</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
<version>1.1.3</version>
<executions>
<execution>
<id>sign</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-pack200b-plugin</artifactId>
<version>${tycho-extras-version}</version>
<executions>
<execution>
<id>pack200-pack</id>
<goals>
<goal>pack</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<modules>
<module>org.eclipse.bpmn2</module>
<module>org.eclipse.bpmn2.edit</module>
<module>org.eclipse.bpmn2.editor</module>
<module>org.eclipse.bpmn2.features</module>
<module>org.eclipse.bpmn2.site</module>
<module>org.eclipse.bpmn2.tools.ecoremerger</module>
</modules>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
<repository>
<id>eclipse-platform</id>
<layout>p2</layout>
<url>${eclipse-site}</url>
</repository>
<repository>
<id>eclipse-license</id>
<layout>p2</layout>
<url>https://download.eclipse.org/cbi/updates/license/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.eclipse.org.cbi-releases</id>
<url>https://repo.eclipse.org/content/repositories/cbi-releases/</url>
</pluginRepository>
<pluginRepository>
<id>maven-central</id>
<url>http://repo1.maven.org/maven2/</url>
</pluginRepository>
<pluginRepository>
<id>eclipse-nexus-central</id>
<url>http://maven.eclipse.org/nexus/content/groups/central/</url>
</pluginRepository>
<pluginRepository>
<id>eclipse-nexus-public</id>
<url>http://maven.eclipse.org/nexus/content/groups/public/</url>
</pluginRepository>
<pluginRepository>
<id>m2e-cbi</id>
<url>http://download.eclipse.org/technology/m2e/maven/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<format>'${BUILD_ALIAS}-v'yyyyMMdd-HHmm</format>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-source-feature-plugin</artifactId>
<version>${tycho-extras-version}</version>
<executions>
<execution>
<id>source-feature</id>
<phase>package</phase>
<goals>
<goal>source-feature</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>attached-p2-metadata</id>
<phase>package</phase>
<goals>
<goal>p2-metadata</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<resolver>p2</resolver>
<includePackedArtifacts>true</includePackedArtifacts>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-source-plugin</artifactId>
<executions>
<execution>
<id>plugin-source</id>
<goals>
<goal>plugin-source</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>maven-osgi-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<encoding>ISO-8859-1</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.2-SNAPSHOT</version>
<configuration>
<findbugsXmlOutput>true</findbugsXmlOutput>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version>
<configuration>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
<targetJdk>1.5</targetJdk>
<format>xml</format>
<failOnViolation>false</failOnViolation>
</configuration>
<executions>
<execution>
<goals>
<goal>cpd-check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-source-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<strictSrcIncludes>false</strictSrcIncludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>