| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| Copyright (C) 2011, 2012 Obeo | |
| 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.html | |
| --> | |
| <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/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <prerequisites> | |
| <maven>3.0</maven> | |
| </prerequisites> | |
| <groupId>org.eclipse.emf.compare</groupId> | |
| <artifactId>emf.compare-parent</artifactId> | |
| <version>2.1.0-SNAPSHOT</version> | |
| <packaging>pom</packaging> | |
| <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.17.0</tycho-version> | |
| <tycho-extras-version>0.17.0</tycho-extras-version> | |
| </properties> | |
| <modules> | |
| <!-- Update Site --> | |
| <module>../packaging/org.eclipse.emf.compare.update</module> | |
| <!-- Core --> | |
| <module>../packaging/org.eclipse.emf.compare-feature</module> | |
| <module>../plugins/org.eclipse.emf.compare</module> | |
| <module>../plugins/org.eclipse.emf.compare.tests</module> | |
| <!-- IDE UI --> | |
| <module>../packaging/org.eclipse.emf.compare.ide.ui-feature</module> | |
| <module>../plugins/org.eclipse.emf.compare.edit</module> | |
| <module>../plugins/org.eclipse.emf.compare.ide</module> | |
| <module>../plugins/org.eclipse.emf.compare.ide.ui</module> | |
| <module>../plugins/org.eclipse.emf.compare.doc</module> | |
| <module>../plugins/org.eclipse.emf.compare.ide.ui.tests</module> | |
| <!-- There are no longer any "ide" tests | |
| <module>../plugins/org.eclipse.emf.compare.ide.tests</module> | |
| --> | |
| <!-- RCP --> | |
| <module>../packaging/org.eclipse.emf.compare.rcp.ui-feature</module> | |
| <module>../plugins/org.eclipse.emf.compare.rcp</module> | |
| <module>../plugins/org.eclipse.emf.compare.rcp.ui</module> | |
| <!-- UML --> | |
| <module>../packaging/org.eclipse.emf.compare.uml2-feature</module> | |
| <module>../plugins/org.eclipse.emf.compare.uml2</module> | |
| <module>../plugins/org.eclipse.emf.compare.uml2.edit</module> | |
| <module>../plugins/org.eclipse.emf.compare.uml2.rcp</module> | |
| <module>../plugins/org.eclipse.emf.compare.uml2.rcp.ui</module> | |
| <module>../plugins/org.eclipse.emf.compare.uml2.tests</module> | |
| <!-- SYSML --> | |
| <!-- Not compiling yet | |
| <module>../packaging/org.eclipse.emf.compare.sysml-feature</module> | |
| <module>../plugins/org.eclipse.emf.compare.sysml</module> | |
| <module>../plugins/org.eclipse.emf.compare.sysml.edit</module> | |
| <module>../plugins/org.eclipse.emf.compare.sysml.tests</module> | |
| --> | |
| <!-- GMF --> | |
| <module>../packaging/org.eclipse.emf.compare.diagram.gmf-feature</module> | |
| <module>../plugins/org.eclipse.emf.compare.diagram</module> | |
| <module>../plugins/org.eclipse.emf.compare.diagram.edit</module> | |
| <module>../plugins/org.eclipse.emf.compare.diagram.ide.ui</module> | |
| <!-- Ecore Tools --> | |
| <module>../packaging/org.eclipse.emf.compare.diagram.ecoretools-feature</module> | |
| <module>../plugins/org.eclipse.emf.compare.diagram.ide.ui.ecoretools</module> | |
| <module>../plugins/org.eclipse.emf.compare.diagram.ecoretools.tests</module> | |
| <module>../plugins/org.eclipse.emf.compare.diagram.ide.ecoretools.tests</module> | |
| <!-- Papyrus --> | |
| <module>../packaging/org.eclipse.emf.compare.diagram.papyrus-feature</module> | |
| <module>../plugins/org.eclipse.emf.compare.diagram.ide.ui.papyrus</module> | |
| <module>../plugins/org.eclipse.emf.compare.diagram.papyrus.tests</module> | |
| </modules> | |
| <build> | |
| <sourceDirectory>src</sourceDirectory> | |
| <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> | |
| <environments> | |
| <environment> | |
| <os>linux</os> | |
| <ws>gtk</ws> | |
| <arch>x86</arch> | |
| </environment> | |
| <environment> | |
| <os>win32</os> | |
| <ws>win32</ws> | |
| <arch>x86</arch> | |
| </environment> | |
| <environment> | |
| <os>win32</os> | |
| <ws>win32</ws> | |
| <arch>x86_64</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> | |
| </environments> | |
| </configuration> | |
| </plugin> | |
| <!-- enable source bundle generation --> | |
| <plugin> | |
| <groupId>org.eclipse.tycho</groupId> | |
| <artifactId>tycho-source-plugin</artifactId> | |
| <version>${tycho-version}</version> | |
| <executions> | |
| <execution> | |
| <id>plugin-source</id> | |
| <goals> | |
| <goal>plugin-source</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </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> | |
| <!-- These two should allow us not to get "duplicate artifact" warnings during the build. --> | |
| <execution> | |
| <!-- Don't attach (default) metadata before the source-feature execution.--> | |
| <id>default-p2-metadata-default</id> | |
| <configuration> | |
| <attachP2Metadata>false</attachP2Metadata> | |
| </configuration> | |
| </execution> | |
| <execution> | |
| <!-- Do attach metadata after the source-feature execution.--> | |
| <id>attach-p2-metadata</id> | |
| <goals> | |
| <goal>p2-metadata</goal> | |
| </goals> | |
| <phase>package</phase> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| <pluginManagement> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.eclipse.tycho</groupId> | |
| <artifactId>tycho-compiler-plugin</artifactId> | |
| <version>${tycho-version}</version> | |
| <configuration> | |
| <encoding>UTF-8</encoding> | |
| <source>1.5</source> | |
| <target>1.5</target> | |
| </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</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> | |
| <profiles> | |
| <profile> | |
| <id>kepler</id> | |
| <activation> | |
| <activeByDefault>true</activeByDefault> | |
| </activation> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.eclipse.tycho</groupId> | |
| <artifactId>target-platform-configuration</artifactId> | |
| <version>${tycho-version}</version> | |
| <configuration> | |
| <target> | |
| <artifact> | |
| <groupId>org.eclipse.emf.compare</groupId> | |
| <artifactId>emf.compare-parent</artifactId> | |
| <version>2.1.0-SNAPSHOT</version> | |
| <classifier>targetPlatforms/kepler-rc1-sdk</classifier> | |
| </artifact> | |
| </target> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| <profile> | |
| <id>juno</id> | |
| <activation> | |
| <activeByDefault>false</activeByDefault> | |
| </activation> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.eclipse.tycho</groupId> | |
| <artifactId>target-platform-configuration</artifactId> | |
| <version>${tycho-version}</version> | |
| <configuration> | |
| <target> | |
| <artifact> | |
| <groupId>org.eclipse.emf.compare</groupId> | |
| <artifactId>emf.compare-parent</artifactId> | |
| <version>2.1.0-SNAPSHOT</version> | |
| <classifier>targetPlatforms/juno-4.2-sdk</classifier> | |
| </artifact> | |
| </target> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| <profile> | |
| <id>indigo</id> | |
| <activation> | |
| <activeByDefault>false</activeByDefault> | |
| </activation> | |
| <repositories> | |
| <repository><id>indigo</id><layout>p2</layout> | |
| <url>http://download.eclipse.org/releases/indigo</url> | |
| </repository> | |
| <repository><id>orbit</id><layout>p2</layout> | |
| <!-- For now, use a "known" update site as the global one does not yet hold guava | |
| <url>http://download.eclipse.org/tools/orbit/downloads/drops/updateSite</url> | |
| --> | |
| <url>http://download.eclipse.org/tools/orbit/downloads/drops/R20120526062928/repository/</url> | |
| </repository> | |
| <repository><id>emfstore-fuzzy</id><layout>p2</layout> | |
| <url>http://download.eclipse.org/emf-store/milestones/latest</url> | |
| </repository> | |
| </repositories> | |
| </profile> | |
| <profile> | |
| <id>helios</id> | |
| <activation> | |
| <activeByDefault>false</activeByDefault> | |
| </activation> | |
| <build> <plugins> | |
| <plugin> | |
| <groupId>org.eclipse.tycho</groupId> | |
| <artifactId>target-platform-configuration</artifactId> | |
| <version>${tycho-version}</version> | |
| <configuration> | |
| <resolver>p2</resolver> | |
| <ignoreTychoRepositories>true</ignoreTychoRepositories> | |
| <target> | |
| <artifact> | |
| <groupId>org.eclipse.emf.compare</groupId> | |
| <artifactId>org.eclipse.emf.compare</artifactId> | |
| <version>2.1.0-SNAPSHOT</version> | |
| <classifier>target_platforms/helios-sdk</classifier> | |
| </artifact> | |
| </target> | |
| <environments> | |
| <environment> | |
| <os>linux</os> | |
| <ws>gtk</ws> | |
| <arch>x86</arch> | |
| </environment> | |
| <environment> | |
| <os>win32</os> | |
| <ws>win32</ws> | |
| <arch>x86</arch> | |
| </environment> | |
| </environments> | |
| </configuration> | |
| </plugin></plugins></build> | |
| </profile> | |
| <profile> | |
| <id>galileo</id> | |
| <activation> | |
| <activeByDefault>false</activeByDefault> | |
| </activation> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-antrun-plugin</artifactId> | |
| <version>1.3</version> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.eclipse.tycho</groupId> | |
| <artifactId>target-platform-configuration</artifactId> | |
| <version>${tycho-version}</version> | |
| <configuration> | |
| <resolver>p2</resolver> | |
| <ignoreTychoRepositories>true</ignoreTychoRepositories> | |
| <target> | |
| <artifact> | |
| <groupId>org.eclipse.emf.compare</groupId> | |
| <artifactId>org.eclipse.emf.compare</artifactId> | |
| <version>2.1.0-SNAPSHOT</version> | |
| <classifier>target_platforms/galileo-sdk</classifier> | |
| </artifact> | |
| </target> | |
| <environments> | |
| <environment> | |
| <os>linux</os> | |
| <ws>gtk</ws> | |
| <arch>x86</arch> | |
| </environment> | |
| <environment> | |
| <os>win32</os> | |
| <ws>win32</ws> | |
| <arch>x86</arch> | |
| </environment> | |
| </environments> | |
| </configuration> | |
| </plugin></plugins></build> | |
| </profile> | |
| <profile> | |
| <id>quality</id> | |
| <activation> | |
| <activeByDefault>true</activeByDefault> | |
| </activation> | |
| <properties> | |
| <!-- Sonar properties --> | |
| <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> | |
| <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> | |
| <!-- Points to the target folder of the global parent project --> | |
| <sonar.jacoco.reportPath>../../org.eclipse.emf.compare-parent/target/jacoco.exec</sonar.jacoco.reportPath> | |
| </properties> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.jacoco</groupId> | |
| <artifactId>jacoco-maven-plugin</artifactId> | |
| <version>0.5.6.201201232323</version> | |
| <executions> | |
| <execution> | |
| <goals> | |
| <goal>prepare-agent</goal> | |
| </goals> | |
| <configuration> | |
| <append>true</append> | |
| <destFile>${sonar.jacoco.reportPath}</destFile> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| <profile> | |
| <id>checkstyle</id> | |
| <activation> | |
| <activeByDefault>false</activeByDefault> | |
| </activation> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-checkstyle-plugin</artifactId> | |
| <version>2.6</version> | |
| <executions> | |
| <execution> | |
| <id>check my sources</id> | |
| <goals> | |
| <goal>checkstyle</goal> | |
| </goals> | |
| <phase>verify</phase> | |
| <configuration> | |
| <failOnErrors>false</failOnErrors> | |
| <consoleOutput>true</consoleOutput> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| <profile> | |
| <id>coverage</id> | |
| <activation> | |
| <activeByDefault>false</activeByDefault> | |
| </activation> | |
| <modules> | |
| <module>org.eclemma.runtime.equinox</module> | |
| </modules> | |
| </profile> | |
| <profile> | |
| <id>static-checks</id> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>findbugs-maven-plugin</artifactId> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-pmd-plugin</artifactId> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| </profiles> | |
| </project> |