| <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.modeler</groupId> |
| <artifactId>org.eclipse.bpmn2.modeler.parent</artifactId> |
| <version>0.2.0-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <name>BPMN2 Modeler Parent</name> |
| <description>Parent POM for the Eclipse BPMN2 Modeler Project</description> |
| |
| <licenses> |
| <license> |
| <name>Eclipse Public License v1.0</name> |
| <comments> |
| All rights reserved. |
| |
| This program and the accompanying materials are made |
| available under the terms of the Eclipse Public License v1.0 |
| which accompanies this distribution, and is available at |
| http://www.eclipse.org/legal/epl-v10.htm |
| </comments> |
| </license> |
| </licenses> |
| |
| <properties> |
| <tycho-version>0.13.0</tycho-version> |
| </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> |
| </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> |
| </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> |
| </properties> |
| </profile> |
| </profiles> |
| |
| <modules> |
| <module>org.eclipse.bpmn2.modeler.core</module> |
| <module>org.eclipse.bpmn2.modeler.ui</module> |
| <module>org.eclipse.bpmn2.modeler.runtime.jboss.jbpm5</module> |
| <module>org.eclipse.bpmn2.modeler.runtime.example</module> |
| <module>org.eclipse.bpmn2.modeler.feature</module> |
| <module>org.eclipse.bpmn2.modeler.jboss.runtime.feature</module> |
| <module>org.eclipse.bpmn2.modeler.examples.feature</module> |
| <module>org.eclipse.bpmn2.modeler.updatesite.feature</module> |
| </modules> |
| |
| <repositories> |
| <repository> |
| <id>eclipse-platform</id> |
| <layout>p2</layout> |
| <url>${eclipse-site}</url> |
| </repository> |
| |
| <repository> |
| <id>eclipse-bpmn2</id> |
| <!-- TODO: change this when BPMN2 metamodel finds a permanent home --> |
| <url>https://hudson.eclipse.org/hudson/job/bpmn2-nightly/lastSuccessfulBuild/artifact/org.eclipse.bpmn2.site/target/site/</url> |
| <layout>p2</layout> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| </repository> |
| |
| <repository> |
| <id>eclipse-bpel</id> |
| <url>http://download.eclipse.org/bpel/site/1.0.2</url> |
| <layout>p2</layout> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| </repository> |
| |
| <repository> |
| <id>eclipse-graphiti</id> |
| <url>http://download.eclipse.org/graphiti/updates/0.9.0</url> |
| <layout>p2</layout> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| </repository> |
| |
| <repository> |
| <id>eclipse-emf</id> |
| <url>http://download.eclipse.org/modeling/emf/updates/releases/</url> |
| <layout>p2</layout> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| </repository> |
| |
| <repository> |
| <id>eclipse-gef</id> |
| <url>http://download.eclipse.org/tools/gef/updates/releases/</url> |
| <layout>p2</layout> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| </repository> |
| |
| </repositories> |
| |
| <pluginRepositories> |
| <pluginRepository> |
| <!-- need maven-findbugs-2.3.2-SNAPSHOT, see http://jira.codehaus.org/browse/MFINDBUGS-122 |
| remove this when this version is released --> |
| <id>codehaus.snapshots</id> |
| <url>http://snapshots.repository.codehaus.org/</url> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| <build> |
| <plugins> |
| <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> |
| </configuration> |
| </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> |
| <!-- TODO remove workaround when https://issues.sonatype.org/browse/TYCHO-473 |
| is fixed --> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>maven-osgi-source-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>attach-source</id> |
| <phase>process-classes</phase> |
| <goals> |
| <goal>plugin-source</goal> |
| </goals> |
| </execution> |
| </executions> |
| </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> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| |
| </project> |